Ver código fonte

[editor] Updated test with proper exception message (#1141)

Co-authored-by: Romain Rigaux <romain.rigaux@gmail.com>
Sungpeo Kook 5 anos atrás
pai
commit
c0c404f732
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      desktop/libs/notebook/src/notebook/api_tests.py

+ 1 - 1
desktop/libs/notebook/src/notebook/api_tests.py

@@ -576,7 +576,7 @@ class TestNotebookApiMocked(object):
 
     data = json.loads(response.content)
     assert_equal(-1, data['status'], data)
-    assert_equal('The destination is not a empty directory!', data['message'], data)
+    assert_equal('The destination is not an empty directory!', data['message'], data)
 
 
   def test_download_result(self):