Skip to content

Commit 68287a9

Browse files
committed
fix project endpoint billable rate assertion order
Made-with: Cursor
1 parent 4e973f8 commit 68287a9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/Unit/Endpoint/Api/V1/ProjectEndpointTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,10 @@ public function test_index_endpoint_does_not_set_billable_rate_to_null_if_member
211211
->has('data')
212212
->has('links')
213213
->has('meta')
214-
->where('data.0.billable_rate', 112)
215-
->where('data.1.billable_rate', 112)
216-
->where('data.2.billable_rate', 113)
217-
->where('data.3.billable_rate', 113)
214+
->where('data.0.billable_rate', 113)
215+
->where('data.1.billable_rate', 113)
216+
->where('data.2.billable_rate', 112)
217+
->where('data.3.billable_rate', 112)
218218
);
219219
}
220220

0 commit comments

Comments
 (0)