Skip to content

Commit

Permalink
fixed test for n
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanSK committed Mar 26, 2019
1 parent 4d35362 commit 76fef2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/compiler/tests/deliverable/FOR_N.c
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
int FOR_N()
{
int i;
for (i = 0; i < 1; ++i)
for (i = 0; i < 2; ++i)
{
}
return i;
Expand Down
2 changes: 1 addition & 1 deletion test/compiler/tests/deliverable/FOR_N_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ int FOR_N();

int main()
{
return !(FOR_N() == 1);
return !(FOR_N() == 2);
}

0 comments on commit 76fef2f

Please sign in to comment.