summaryrefslogtreecommitdiff
path: root/src/02/05/stack_test.c
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-08-09 18:21:26 -0600
committermo khan <mo.khan@gmail.com>2020-08-09 18:21:26 -0600
commit082e48dadeb0100afa6f088d0ba3df4f2c54b3be (patch)
treeba374bddf0893a5eba57162eafb048afe1efb632 /src/02/05/stack_test.c
parent9eca43fbc55f669463d8135bb3047898f0ce8af1 (diff)
Run clang fmt
Diffstat (limited to 'src/02/05/stack_test.c')
-rw-r--r--src/02/05/stack_test.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/02/05/stack_test.c b/src/02/05/stack_test.c
index 8f99d25..2f3eae0 100644
--- a/src/02/05/stack_test.c
+++ b/src/02/05/stack_test.c
@@ -57,7 +57,8 @@ Ensure(Stack, when_popping_an_item_off_of_a_stack) {
TestSuite *stack_tests() {
TestSuite *suite = create_test_suite();
add_test_with_context(suite, Stack, when_pushing_an_item_on_to_a_stack);
- add_test_with_context(suite, Stack, when_pushing_multiple_items_on_to_a_stack);
+ add_test_with_context(suite, Stack,
+ when_pushing_multiple_items_on_to_a_stack);
add_test_with_context(suite, Stack, when_pushing_a_custom_type_on_to_a_stack);
add_test_with_context(suite, Stack, when_popping_an_item_off_of_a_stack);
return suite;