Skip to content

Commit

Permalink
fix quotes in test
Browse files Browse the repository at this point in the history
  • Loading branch information
kb0 committed Aug 5, 2020
1 parent c524092 commit 8332813
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/gpx_reader_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ void main() {

expect(gpx.wpts.length, 3);
expect(gpx.wpts.first.fix, FixType.fix_3d);
expect(gpx.wpts.first.name, "La Hermida");
expect(gpx.wpts.first.desc, "At 43.25473N, 4.61518W");
expect(gpx.wpts.first.name, 'La Hermida');
expect(gpx.wpts.first.desc, 'At 43.25473N, 4.61518W');

expect(gpx.trks.length, 1);
});
Expand Down

0 comments on commit 8332813

Please sign in to comment.