changed id to file_id in multiple instances, which caused the calls to not work

This commit is contained in:
Kikimanox
2022-06-29 14:50:28 +02:00
parent 9ccc924a48
commit 34039e38dd
4 changed files with 18 additions and 18 deletions
+3 -3
View File
@@ -17,7 +17,7 @@ class TestOssController(BaseTestCase):
Vrne CoNNL-U po id-ju datoteke
"""
query_string = [('id', 789)]
query_string = [('file_id', 789)]
response = self.client.open(
'/oss/conlluPoId',
method='GET',
@@ -62,7 +62,7 @@ class TestOssController(BaseTestCase):
Vrne binarni zapis v originalnem formatu po id-ju datoteke
"""
query_string = [('id', 789)]
query_string = [('file_id', 789)]
response = self.client.open(
'/oss/datotekaPoId',
method='GET',
@@ -123,7 +123,7 @@ class TestOssController(BaseTestCase):
Vrne besedilo po id-ju datoteke
"""
query_string = [('id', 789)]
query_string = [('file_id', 789)]
response = self.client.open(
'/oss/besediloPoId',
method='GET',