diff --git a/test/frame_test.c b/test/frame_test.c index c696e2b..9d71cf3 100644 --- a/test/frame_test.c +++ b/test/frame_test.c @@ -7,9 +7,10 @@ void test_initialize_frame() { allocate_frame(&frame); initialize_frame(frame); - assert(frame->shape == NULL && - frame->start_y == 0 && - frame->start_x == 0); + + assert(frame->shape == NULL); + assert(frame->start_y == 0); + assert(frame->start_x == 0); return; }