Skip to content

Commit

Permalink
last missing test line
Browse files Browse the repository at this point in the history
  • Loading branch information
NickMcSweeney committed Feb 15, 2024
1 parent 4c3572c commit 09c9e07
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ end
end

@testset "supported nmea" begin
line = raw"$GPGGA,134740.000,5540.3248,N,01231.2992,E,1,09,0.9,20.2,M,41.5,M,,0000*61"
@test !NMEAParser.is_string_proprietary(line)
@test !NMEAParser.is_string_supported(line)
line = raw"$GPGGA,134740.000,5540.3248,N,01231.2992,E,1,09,0.9,20.2,M,41.5,M,,0000*61"
@test NMEAParser.is_string_proprietary(line) === false
@test NMEAParser.is_string_supported(line)
end

@testset verbose = true "unit conversion" begin
Expand Down

0 comments on commit 09c9e07

Please sign in to comment.