Skip to content

Commit

Permalink
tests: fix tests to follow consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
kamiccolo committed Jan 26, 2024
1 parent 6c317f3 commit f13bec5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_proprietary.py
Expand Up @@ -75,7 +75,7 @@ def test_proprietary_with_comma():
msg = pynmea2.parse(data)
assert type(msg) == pynmea2.tnl.TNLPJT
assert msg.manufacturer == 'TNL'
assert msg.sentence_type == 'PJT'
assert msg.type == 'PJT'
assert msg.coord_name == 'NAD83(Conus)'
assert msg.project_name == 'CaliforniaZone 4 0404'
assert str(msg) == data
Expand Down
2 changes: 1 addition & 1 deletion test/test_tnl.py
Expand Up @@ -104,6 +104,6 @@ def test_tnlvhd():
assert msg.vertdt == -5.015
assert msg.range == 0.033
assert msg.rdt == 0.006
assert msg.gps_quality == 3
assert msg.gps_quality == '3'
assert msg.num_sats == 7
assert msg.pdop == 2.4

0 comments on commit f13bec5

Please sign in to comment.