Skip to content

Commit

Permalink
fixed ASSERTm error
Browse files Browse the repository at this point in the history
  • Loading branch information
TheGAzed committed Sep 8, 2024
1 parent d3fdf57 commit 3807214
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/unit/structures/concrete/state_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
TEST is_one_value_all_valid_states(void) {
for (size_t i = 0; i < MAX_BLOCK_VALUES; ++i) {
ASSERTm(
is_one_value(1 << i),
"[ERROR] EXPECTED STATE TO BE A ONE VALUE"
"[ERROR] EXPECTED STATE TO BE A ONE VALUE",
is_one_value(1 << i)
);
}
PASS();
Expand All @@ -15,8 +15,8 @@ TEST is_one_value_all_valid_states(void) {
TEST is_one_value_invalid_state(void) {
for (size_t i = 0; i < MAX_BLOCK_VALUES; ++i) {
ASSERTm(
is_one_value(1 << i),
"[ERROR] EXPECTED STATE TO BE A ONE VALUE"
"[ERROR] EXPECTED STATE TO BE A ONE VALUE",
is_one_value(1 << i)
);
}
PASS();
Expand Down

0 comments on commit 3807214

Please sign in to comment.