Skip to content

Commit a68c775

Browse files
reset test to true expected value
1 parent 57387b1 commit a68c775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/xtest_tdd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ FOSSIL_TEST(xassert_run_of_int64) {
8383

8484
// Test cases
8585
TEST_ASSERT((int64_t)x == 42, "Should have passed the test case");
86-
TEST_ASSERT((int64_t)y != 20, "Should have passed the test case");
86+
TEST_ASSERT((int64_t)y == 20, "Should have passed the test case");
8787
TEST_ASSERT((int64_t)x != (int64_t)y, "Should have passed the test case");
8888
TEST_ASSERT((int64_t)y < (int64_t)x, "Should have passed the test case");
8989
TEST_ASSERT((int64_t)y <= (int64_t)x, "Should have passed the test case");

0 commit comments

Comments
 (0)