Skip to content
Snippets Groups Projects
Unverified Commit 3b7f0beb authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: correct names of tags according to https://doi.org/10.3390/data5020043

parent 3d92ae8c
No related branches found
No related tags found
1 merge request!22Release 0.3
......@@ -97,7 +97,7 @@ class CrawlerTest(unittest.TestCase):
# Should reference an experiment
sources = [get_entity_with_id(el) for el in
ana.get_property("source").value]
ana.get_property("sources").value]
count = 0
for s in sources:
......@@ -125,7 +125,7 @@ class CrawlerTest(unittest.TestCase):
# Should reference an experiment
sources = [get_entity_with_id(el) for el in
ana.get_property("source").value]
ana.get_property("sources").value]
count = 0
for s in sources:
......@@ -180,7 +180,7 @@ class CrawlerTest(unittest.TestCase):
unique=True)
sources = [get_entity_with_id(el) for el in
sim.get_property("source").value]
sim.get_property("sources").value]
count = 0
for s in sources:
......@@ -229,7 +229,7 @@ class CrawlerTest(unittest.TestCase):
assert os.path.basename(datfile.path) == "poster.pdf"
# There should be a file as data attached
datfile_id = pub.get_property("source").value[1]
datfile_id = pub.get_property("sources").value[1]
datfile = get_entity_with_id(datfile_id)
assert os.path.basename(datfile.path) == "results.pdf"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment