Skip to content

Commit

Permalink
fix: assert test
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 committed Oct 6, 2023
1 parent 7e133f6 commit 3443884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixtures/aplusb/source/assert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ using namespace std;
int main() {
int a = 1, b = 1;
cin >> a >> b;
assert(a == 1 && b == 1);
assert(a == 2 && b == 2);
return 0;
}

0 comments on commit 3443884

Please sign in to comment.