summaryrefslogtreecommitdiff
path: root/src/tests/unit-tests.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/unit-tests.c')
-rw-r--r--src/tests/unit-tests.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/tests/unit-tests.c b/src/tests/unit-tests.c
index 103d68b2e..a16fca5b9 100644
--- a/src/tests/unit-tests.c
+++ b/src/tests/unit-tests.c
@@ -188,7 +188,8 @@ static void
meta_test_adjecent_to (void)
{
MetaRectangle base = { .x = 10, .y = 10, .width = 10, .height = 10 };
- MetaRectangle adjecent[] = {
+ MetaRectangle adjecent[] =
+ {
{ .x = 20, .y = 10, .width = 10, .height = 10 },
{ .x = 0, .y = 10, .width = 10, .height = 10 },
{ .x = 0, .y = 1, .width = 10, .height = 10 },
@@ -196,7 +197,8 @@ meta_test_adjecent_to (void)
{ .x = 10, .y = 20, .width = 10, .height = 10 },
{ .x = 10, .y = 0, .width = 10, .height = 10 },
};
- MetaRectangle not_adjecent[] = {
+ MetaRectangle not_adjecent[] =
+ {
{ .x = 0, .y = 0, .width = 10, .height = 10 },
{ .x = 20, .y = 20, .width = 10, .height = 10 },
{ .x = 21, .y = 10, .width = 10, .height = 10 },