Skip to content

Commit

Permalink
fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
clangenb committed Nov 15, 2023
1 parent 409fdd1 commit 01277e2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/ew_encointer_utils/test/assignment_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,11 @@ void main() {
MeetupTimeTestCase(description: 'is correct for non-integer results', longitude: 19.5, offset: 0, expected: 161),
MeetupTimeTestCase(description: 'is correct for positive offset', longitude: 20, offset: 1, expected: 161),
MeetupTimeTestCase(
description: 'is correct result for negative offset', longitude: 20, offset: -1, expected: 159),
description: 'is correct result for negative offset',
longitude: 20,
offset: -1,
expected: 159,
),
];

for (final testCase in meetupTimeTestCases) {
Expand Down

0 comments on commit 01277e2

Please sign in to comment.