diff --git a/integrationtests/full_test/test_crawler.py b/integrationtests/full_test/test_crawler.py
index 485766f977002c4af8dfff5458cc27e544b1d382..cf399bfb59cd194e38f8df81f162ac01e52f296d 100755
--- a/integrationtests/full_test/test_crawler.py
+++ b/integrationtests/full_test/test_crawler.py
@@ -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"