Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanplusplus committed Dec 15, 2024
1 parent cbf3f3f commit 071dd8a
Show file tree
Hide file tree
Showing 2 changed files with 3 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": "7.0.0",
"version": "7.0.1",
"frameworks": "*",
"platforms": "*",
"export": {
Expand Down
4 changes: 2 additions & 2 deletions test/tests/tiny_queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ TEST(tiny_queue, should_be_able_to_peek_just_part_of_an_element)
should_be_able_to_peek_bytes_of(0, 10, 0);
should_be_able_to_peek_bytes_of(0, 15, 0);
should_be_able_to_peek_bytes_of(0, 1, 3);
// should_be_able_to_peek_bytes_of(0, 10, 4);
// should_be_able_to_peek_bytes_of(0, 15, 5); // fixme
should_be_able_to_peek_bytes_of(0, 10, 4);
should_be_able_to_peek_bytes_of(0, 15, 5);
should_be_able_to_peek_bytes_of(0, large_element_size, 0);
}

Expand Down

0 comments on commit 071dd8a

Please sign in to comment.