Skip to content

Commit bf67403

Browse files
committed
Remove duplicated test
1 parent 4f0d4d9 commit bf67403

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

pyorbital/tests/test_tlefile.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -123,19 +123,6 @@ def test_from_file(self):
123123
finally:
124124
remove(filename)
125125

126-
def test_from_file_with_hyphenated_platform_name(self):
127-
"""Test reading and parsing from a file with a slightly different name."""
128-
from tempfile import mkstemp
129-
from os import write, close, remove
130-
filehandle, filename = mkstemp()
131-
try:
132-
write(filehandle, NOAA19_LINES.encode('utf-8'))
133-
close(filehandle)
134-
tle = Tle("NOAA-19", filename)
135-
assert tle.satnumber == "33591"
136-
finally:
137-
remove(filename)
138-
139126
def test_from_file_with_hyphenated_platform_name(self):
140127
"""Test reading and parsing from a file with a slightly different name."""
141128
from tempfile import mkstemp

0 commit comments

Comments
 (0)