diff options
author | Mitya Selivanov <automainint@guattari.tech> | 2023-03-27 13:07:39 +0200 |
---|---|---|
committer | Mitya Selivanov <automainint@guattari.tech> | 2023-03-27 13:07:39 +0200 |
commit | 7cccceaf6b15981a3f441f55097dac5fa5395ccc (patch) | |
tree | 873482fae5ec8efdec9094aff827ce4c4804a388 /source/test/unittests/move_back.test.c | |
parent | 108be944da53ddec282b65cb4d90d45cbb1dd84d (diff) | |
download | kit-7cccceaf6b15981a3f441f55097dac5fa5395ccc.zip |
[kit_test] REQUIRE_EQ
Diffstat (limited to 'source/test/unittests/move_back.test.c')
-rw-r--r-- | source/test/unittests/move_back.test.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/test/unittests/move_back.test.c b/source/test/unittests/move_back.test.c index 6799128..399619d 100644 --- a/source/test/unittests/move_back.test.c +++ b/source/test/unittests/move_back.test.c @@ -29,10 +29,10 @@ TEST("move back val") { MOVE_BACK(ref.size, ref, 2, is_equal); - REQUIRE(ref.size == 3); - REQUIRE(v[0] == 1); - REQUIRE(v[1] == 1); - REQUIRE(v[2] == 1); + REQUIRE_EQ(ref.size, 3); + REQUIRE_EQ(v[0], 1); + REQUIRE_EQ(v[1], 1); + REQUIRE_EQ(v[2], 1); } TEST("move back ref val") { |