Skip to content

Commit

Permalink
Test cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanplusplus committed Dec 7, 2024
1 parent 28275c9 commit f9381a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"maintainer": true
}
],
"version": "6.4.6",
"version": "6.4.7",
"frameworks": "*",
"platforms": "*",
"export": {
Expand Down
3 changes: 1 addition & 2 deletions test/tests/tiny_queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,7 @@ TEST_GROUP(tiny_queue)

void given_that_small_element_has_been_enqueued(uint8_t element)
{
bool wasTheOperationSuccessful = tiny_queue_enqueue(&self, (void*)&element, sizeof(element));
CHECK_TRUE(wasTheOperationSuccessful);
CHECK_TRUE(tiny_queue_enqueue(&self, (void*)&element, sizeof(element)));
}

void small_element_shoulde_be_dequeued(uint8_t element)
Expand Down

0 comments on commit f9381a5

Please sign in to comment.