Skip to content

Commit

Permalink
Add missing iterations in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sosthene-nitrokey committed Mar 13, 2023
1 parent 6a53d76 commit 24795e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_dirs.toml
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ code = '''
}
lfs_unmount(&lfs) => 0;
for (int j = 2; j < COUNT; j++) {
for (int j = 2; j < COUNT + 2; j++) {
lfs_mount(&lfs, &cfg) => 0;
lfs_dir_open(&lfs, &dir, "hello") => 0;
lfs_dir_read(&lfs, &dir, &info) => 1;
Expand Down Expand Up @@ -787,7 +787,7 @@ code = '''
}
lfs_unmount(&lfs) => 0;
for (int j = 2; j < COUNT; j++) {
for (int j = 2; j < COUNT + 2; j++) {
lfs_mount(&lfs, &cfg) => 0;
lfs_dir_open(&lfs, &dir, "/") => 0;
lfs_dir_read(&lfs, &dir, &info) => 1;
Expand Down

0 comments on commit 24795e6

Please sign in to comment.