Skip to content

Commit f9381a5

Browse files
committed
Test cleanup
1 parent 28275c9 commit f9381a5

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"maintainer": true
1414
}
1515
],
16-
"version": "6.4.6",
16+
"version": "6.4.7",
1717
"frameworks": "*",
1818
"platforms": "*",
1919
"export": {

test/tests/tiny_queue_test.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ TEST_GROUP(tiny_queue)
8585

8686
void given_that_small_element_has_been_enqueued(uint8_t element)
8787
{
88-
bool wasTheOperationSuccessful = tiny_queue_enqueue(&self, (void*)&element, sizeof(element));
89-
CHECK_TRUE(wasTheOperationSuccessful);
88+
CHECK_TRUE(tiny_queue_enqueue(&self, (void*)&element, sizeof(element)));
9089
}
9190

9291
void small_element_shoulde_be_dequeued(uint8_t element)

0 commit comments

Comments
 (0)