diff options
| author | gingerBill <bill@gingerbill.org> | 2024-06-29 18:51:28 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2024-06-29 18:51:28 +0100 |
| commit | b0cbda4ee0d3f1a8d20536385df67280210aa551 (patch) | |
| tree | c8d7be34cfff50b0963561b9ee4081477f75a1bb /tests/core/path/filepath | |
| parent | 930c92929477ea39d46310bbfbd23c19db4d12ac (diff) | |
Fix indentation of tests
Diffstat (limited to 'tests/core/path/filepath')
| -rw-r--r-- | tests/core/path/filepath/test_core_filepath.odin | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/core/path/filepath/test_core_filepath.odin b/tests/core/path/filepath/test_core_filepath.odin index 94b9329bb..f0137f69b 100644 --- a/tests/core/path/filepath/test_core_filepath.odin +++ b/tests/core/path/filepath/test_core_filepath.odin @@ -35,12 +35,10 @@ test_split_list_windows :: proc(t: ^testing.T) { assert(i == d.i, fmt.tprintf("wrong data index: i %d != d.i %d\n", i, d.i)) r := filepath.split_list(d.v) defer delete_split(r) - testing.expect(t, len(r) == len(d.e), fmt.tprintf("i:%d %s(%s) len(r) %d != len(d.e) %d", - i, #procedure, d.v, len(r), len(d.e))) + testing.expect(t, len(r) == len(d.e), fmt.tprintf("i:%d %s(%s) len(r) %d != len(d.e) %d", i, #procedure, d.v, len(r), len(d.e))) if len(r) == len(d.e) { for _, j in r { - testing.expect(t, r[j] == d.e[j], fmt.tprintf("i:%d %s(%v) -> %v[%d] != %v", - i, #procedure, d.v, r[j], j, d.e[j])) + testing.expect(t, r[j] == d.e[j], fmt.tprintf("i:%d %s(%v) -> %v[%d] != %v", i, #procedure, d.v, r[j], j, d.e[j])) } } } |