We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5a6090 commit 37febbeCopy full SHA for 37febbe
test/remote_lrs_test.py
@@ -18,7 +18,6 @@
18
from calendar import timegm
19
20
from pytz import utc
21
-from tincan.statement_list import StatementList
22
23
if __name__ == '__main__':
24
from test.main import setup_tincan_path
@@ -220,7 +219,7 @@ def test_save_statements(self):
220
219
object=self.activity,
221
context=self.context
222
)
223
- response = self.lrs.save_statements(StatementList([statement1, statement2]))
+ response = self.lrs.save_statements([statement1, statement2])
224
225
self.assertIsInstance(response, LRSResponse)
226
self.assertTrue(response.success)
0 commit comments