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 9e043ea commit 749df07Copy full SHA for 749df07
qiita_pet/handlers/api_proxy/tests/test_artifact.py
@@ -313,8 +313,9 @@ def test_artifact_status_put_req_private(self):
313
'message': 'Artifact visibility changed to private'}
314
self.assertEqual(obs, exp)
315
# testing that the log message is generated
316
- self.assertEqual(LogEntry.newest_records(1)[0].msg,
317
- 'admin@foo.bar changed artifact 1 (study 1) to private')
+ self.assertEqual(
+ LogEntry.newest_records(1)[0].msg,
318
+ 'admin@foo.bar changed artifact 1 (study 1) to private')
319
320
def test_artifact_status_put_req_private_bad_permissions(self):
321
obs = artifact_status_put_req(1, 'test@foo.bar', 'private')
0 commit comments