Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(tests): Use assert
Signed-off-by: Vladislav Oleshko <vlad@dragonflydb.io>
  • Loading branch information
dranikpg committed Jan 14, 2023
commit cb2926ee9e39d79b506239b5eaba3975dff96f39
2 changes: 1 addition & 1 deletion src/server/rdb_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ TEST_F(RdbTest, JsonTest) {
Run({"del", "doc"});
Run({"restore", "doc", "0", facade::ToSV(dump.GetBuf())});
auto res = Run({"json.get", "doc"});
CHECK_EQ(res, test);
ASSERT_EQ(res, test);
}
}

Expand Down