Skip to content

Commit 19ccab0

Browse files
committed
shallow: cleanup whitespace in tests
1 parent 3388f5b commit 19ccab0

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

tests/libgit2/transports/smart/shallowarray.c

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,37 @@
1515

1616
void test_transports_smart_shallowarray__add_and_remove_oid_from_shallowarray(void)
1717
{
18-
git_oid oid_0_obj, oid_1_obj, oid_2_obj;
19-
git_shallowarray *shallow_roots = git__malloc(sizeof(git_shallowarray));
20-
git_array_init(shallow_roots->array);
18+
git_oid oid_0_obj, oid_1_obj, oid_2_obj;
19+
git_shallowarray *shallow_roots = git__malloc(sizeof(git_shallowarray));
20+
git_array_init(shallow_roots->array);
2121

22-
git_oid__fromstr(&oid_0_obj, oid_0, GIT_OID_SHA1);
23-
git_oid__fromstr(&oid_1_obj, oid_1, GIT_OID_SHA1);
24-
git_oid__fromstr(&oid_2_obj, oid_2, GIT_OID_SHA1);
22+
git_oid__fromstr(&oid_0_obj, oid_0, GIT_OID_SHA1);
23+
git_oid__fromstr(&oid_1_obj, oid_1, GIT_OID_SHA1);
24+
git_oid__fromstr(&oid_2_obj, oid_2, GIT_OID_SHA1);
2525

26-
git_shallowarray_add(shallow_roots, &oid_0_obj);
27-
git_shallowarray_add(shallow_roots, &oid_1_obj);
28-
git_shallowarray_add(shallow_roots, &oid_2_obj);
26+
git_shallowarray_add(shallow_roots, &oid_0_obj);
27+
git_shallowarray_add(shallow_roots, &oid_1_obj);
28+
git_shallowarray_add(shallow_roots, &oid_2_obj);
2929

30-
cl_assert_equal_i(3, shallow_roots->array.size);
30+
cl_assert_equal_i(3, shallow_roots->array.size);
3131
cl_assert_equal_s("c070ad8c08840c8116da865b2d65593a6bb9cd2a", git_oid_tostr_s(&shallow_roots->array.ptr[0]));
3232
cl_assert_equal_s("0966a434eb1a025db6b71485ab63a3bfbea520b6", git_oid_tostr_s(&shallow_roots->array.ptr[1]));
3333
cl_assert_equal_s("83834a7afdaa1a1260568567f6ad90020389f664", git_oid_tostr_s(&shallow_roots->array.ptr[2]));
3434

35-
git_shallowarray_remove(shallow_roots, &oid_2_obj);
35+
git_shallowarray_remove(shallow_roots, &oid_2_obj);
3636

37-
cl_assert_equal_i(2, shallow_roots->array.size);
37+
cl_assert_equal_i(2, shallow_roots->array.size);
3838
cl_assert_equal_s("c070ad8c08840c8116da865b2d65593a6bb9cd2a", git_oid_tostr_s(&shallow_roots->array.ptr[0]));
3939
cl_assert_equal_s("0966a434eb1a025db6b71485ab63a3bfbea520b6", git_oid_tostr_s(&shallow_roots->array.ptr[1]));
4040

41-
git_shallowarray_remove(shallow_roots, &oid_1_obj);
41+
git_shallowarray_remove(shallow_roots, &oid_1_obj);
4242

43-
cl_assert_equal_i(1, shallow_roots->array.size);
43+
cl_assert_equal_i(1, shallow_roots->array.size);
4444
cl_assert_equal_s("c070ad8c08840c8116da865b2d65593a6bb9cd2a", git_oid_tostr_s(&shallow_roots->array.ptr[0]));
4545

46-
git_shallowarray_remove(shallow_roots, &oid_0_obj);
46+
git_shallowarray_remove(shallow_roots, &oid_0_obj);
4747

48-
cl_assert_equal_i(0, shallow_roots->array.size);
48+
cl_assert_equal_i(0, shallow_roots->array.size);
4949

5050
git_array_clear(shallow_roots->array);
5151
git__free(shallow_roots);

0 commit comments

Comments
 (0)