-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changed type of uuids returned by the QueryBuilder to be unicode #2259
Changed type of uuids returned by the QueryBuilder to be unicode #2259
Conversation
…before returning
aiida/backends/tests/nodes.py
Outdated
@@ -193,6 +193,19 @@ def test_loop_not_allowed(self): | |||
with self.assertRaises(ValueError): # This would generate a loop | |||
n1.add_incoming(n4, link_type=LinkType.CREATE, link_label='link') | |||
|
|||
class TestTypes(AiidaTestCase): | |||
""" | |||
Test the transitive closure functionality |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wrong docstring
aiida/backends/tests/nodes.py
Outdated
@@ -2189,3 +2202,6 @@ def test_delete_called_but_not_caller(self): | |||
delete_nodes([called.pk], verbosity=2, force=True, follow_returns=True) | |||
|
|||
self._check_existence(uuids_check_existence, uuids_check_deleted) | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
spurious newlines
@@ -14,7 +14,7 @@ | |||
from __future__ import absolute_import | |||
from datetime import datetime | |||
from json import loads as json_loads | |||
import six | |||
import six, uuid |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
additional space
Fixes #231 and fixes #1862