diff --git a/integrationtests/test.sh b/integrationtests/test.sh
index 686172800a96bb5ce5f97d8bc3fc9b89f012ab1b..36730cc948d308659f01f6153f86a917ab1909d0 100755
--- a/integrationtests/test.sh
+++ b/integrationtests/test.sh
@@ -17,7 +17,7 @@ OUT=/tmp/crawler.output
 ls 
 cat pycaosdb.ini
 python3 -c "import caosdb; print('CaosDB Version:', caosdb.__version__)"
-rm -rf /tmp/cache.db
+rm -rf /tmp/caosdb_identifiable_cache.db
 set -e
 echo "Clearing database"
 python3 clear_database.py
diff --git a/src/caosadvancedtools/cache.py b/src/caosadvancedtools/cache.py
index fcd93e7f7861affc3d81f5c5252711edf5587f7b..85e2afffdcf74e87982884a398e9ccd4ecd62bf6 100644
--- a/src/caosadvancedtools/cache.py
+++ b/src/caosadvancedtools/cache.py
@@ -185,7 +185,7 @@ class IdentifiableCache(AbstractCache):
         return 2
 
     def get_default_file_name(self):
-        return "cache.db"
+        return "caosdb_identifiable_cache.db"
 
     def __init__(self, db_file=None, force_creation=False):
         super().__init__(db_file, force_creation)