Skip to content

Commit 84c8fe1

Browse files
committed
removed s from input_files
1 parent 181db24 commit 84c8fe1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_utils_functions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def test_save_all_viewables_and_return_info(client):
116116
assert isinstance(result["object_type"], str)
117117
assert isinstance(result["binary_light_viewable"], str)
118118
assert result["geode_object"] == geode_object
119-
assert result["input_files"] == input_file
119+
assert result["input_file"] == input_file
120120

121121
db_entry = Data.get(result["id"])
122122
assert db_entry is not None
@@ -173,7 +173,7 @@ def test_generate_native_viewable_and_light_viewable_from_object(client):
173173
assert re.match(r"[0-9a-f]{32}", result["id"])
174174
assert isinstance(result["object_type"], str)
175175
assert isinstance(result["binary_light_viewable"], str)
176-
assert result["input_files"] == ""
176+
assert result["input_file"] == ""
177177

178178

179179
def test_generate_native_viewable_and_light_viewable_from_file(client):
@@ -195,4 +195,4 @@ def test_generate_native_viewable_and_light_viewable_from_file(client):
195195
assert re.match(r"[0-9a-f]{32}", result["id"])
196196
assert isinstance(result["object_type"], str)
197197
assert isinstance(result["binary_light_viewable"], str)
198-
assert isinstance(result["input_files"], str)
198+
assert isinstance(result["input_file"], str)

0 commit comments

Comments
 (0)