Skip to content

Commit ea8699c

Browse files
committed
Fix coding standards on tests
1 parent 3918ecd commit ea8699c

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

tests/ConvertKitAPITest.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,10 @@ public function testGetSequenceSubscriptions()
109109
$this->assertIsArray($result['subscriptions']);
110110

111111
// Assert sort order is ascending.
112-
$this->assertGreaterThanOrEqual($result['subscriptions'][0]->created_at, $result['subscriptions'][1]->created_at);
112+
$this->assertGreaterThanOrEqual(
113+
$result['subscriptions'][0]->created_at,
114+
$result['subscriptions'][1]->created_a
115+
);
113116
}
114117

115118
/**
@@ -134,7 +137,10 @@ public function testGetSequenceSubscriptionsWithDescSortOrder()
134137
$this->assertIsArray($result['subscriptions']);
135138

136139
// Assert sort order.
137-
$this->assertLessThanOrEqual($result['subscriptions'][0]->created_at, $result['subscriptions'][1]->created_at);
140+
$this->assertLessThanOrEqual(
141+
$result['subscriptions'][0]->created_at,
142+
$result['subscriptions'][1]->created_a
143+
);
138144
}
139145

140146
/**

0 commit comments

Comments
 (0)