From d7f946eecf27448c19f84ed69024840af56436ed Mon Sep 17 00:00:00 2001 From: sanine Date: Mon, 4 Apr 2022 16:47:11 -0500 Subject: clean up whitespace in tests --- tests/mock_queue.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/mock_queue.c') diff --git a/tests/mock_queue.c b/tests/mock_queue.c index b7f852c..493d397 100644 --- a/tests/mock_queue.c +++ b/tests/mock_queue.c @@ -6,7 +6,7 @@ const char* test_mock_enqueue_dequeue_int() { - lily_queue_t *q = lily_queue_create(); + lily_queue_t *q = lily_queue_create(); /* enqueue A259482, for no particular reason */ lily_enqueue(q, int, 2); @@ -21,7 +21,7 @@ const char* test_mock_enqueue_dequeue_int() { /* queue next value after already popping */ lily_enqueue(q, long, 1651377); - + if (n != 6) return "dequeued incorrect second value"; lily_dequeue(q, int, &n); if (n != 44) return "dequeued incorrect third value"; @@ -32,7 +32,7 @@ const char* test_mock_enqueue_dequeue_int() { if (m != 1651377) return "dequeued incorrect fifth value"; lily_queue_destroy(q); - + return 0; } -- cgit v1.2.1