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 4d447d1 commit 58e4767Copy full SHA for 58e4767
pydra/engine/tests/test_task.py
@@ -1043,13 +1043,14 @@ def test_audit_shellcommandtask(tmpdir):
1043
for file in glob(str(message_path) + "/*.jsonld"):
1044
with open(file, "r") as f:
1045
data = json.load(f)
1046
- if "AssociatedWith" in data:
1047
- if "@type" in data:
+
+ if "@type" in data:
1048
+ if "AssociatedWith" in data:
1049
assert "shelly" in data["Label"]
1050
1051
if "@type" in data:
1052
if data["@type"] == "input":
- assert None == data["Label"]
1053
+ assert data["Label"] == None
1054
1055
if "Command" in data:
1056
command_content.append(True)
0 commit comments