We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57387b1 commit a68c775Copy full SHA for a68c775
test/xtest_tdd.c
@@ -83,7 +83,7 @@ FOSSIL_TEST(xassert_run_of_int64) {
83
84
// Test cases
85
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");
+ TEST_ASSERT((int64_t)y == 20, "Should have passed the test case");
87
TEST_ASSERT((int64_t)x != (int64_t)y, "Should have passed the test case");
88
TEST_ASSERT((int64_t)y < (int64_t)x, "Should have passed the test case");
89
TEST_ASSERT((int64_t)y <= (int64_t)x, "Should have passed the test case");
0 commit comments