Skip to content

Commit bf387ec

Browse files
committed
Put assertion that shouldn't trigger first in test
1 parent 924ef94 commit bf387ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/assert.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#include <assert.h>
22

33
int main() {
4-
assert(1 != 1);
54
assert(1 == 1);
5+
assert(1 != 1);
66

77
return 0;
88
}

0 commit comments

Comments
 (0)