Skip to content

Commit

Permalink
Issue #31 fixed type rom not room
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson318 committed Nov 9, 2022
1 parent 73d4368 commit 9397fd8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_sksurgerynditracker.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,21 +134,21 @@ def test_configure():
del tracker

with pytest.raises(KeyError):
no_room_files_vega = {
no_rom_files_vega = {
"tracker type": "vega",
"ip address": "tracker",
}
tracker = NDITracker(no_room_files_vega)
tracker = NDITracker(no_rom_files_vega)
del tracker

with pytest.raises(FileNotFoundError):
no_room_files_in_paths_polaris = {
no_rom_files_in_paths_polaris = {
"tracker type": "polaris",
"romfiles" : [
"data/something_else_rom",
"data/8700339_rom"]
}
tracker = NDITracker(no_room_files_in_paths_polaris)
tracker = NDITracker(no_rom_files_in_paths_polaris)
del tracker

with pytest.raises(IOError) or pytest.raises(OSError):
Expand Down

0 comments on commit 9397fd8

Please sign in to comment.