diff --git a/persist/src/test/java/lcsb/mapviewer/persist/dao/ConfigurationDaoTest.java b/persist/src/test/java/lcsb/mapviewer/persist/dao/ConfigurationDaoTest.java
index bd5a58703cd453a5d37c4f772412c8d9e254c167..ab254f88462f065e145c9b07236d5721852bfb68 100644
--- a/persist/src/test/java/lcsb/mapviewer/persist/dao/ConfigurationDaoTest.java
+++ b/persist/src/test/java/lcsb/mapviewer/persist/dao/ConfigurationDaoTest.java
@@ -35,17 +35,17 @@ public class ConfigurationDaoTest extends PersistTestFunctions {
     assertNull(configurationDao.getValueByType(null));
 
     // check data for something that is in database
-    String val = configurationDao.getValueByType(ConfigurationElementType.LOGO_TEXT);
+    String val = configurationDao.getValueByType(ConfigurationElementType.LEFT_LOGO_TEXT);
     assertNotNull(val);
 
     // remove data from database
-    ConfigurationOption obj = configurationDao.getByType(ConfigurationElementType.LOGO_TEXT);
+    ConfigurationOption obj = configurationDao.getByType(ConfigurationElementType.LEFT_LOGO_TEXT);
     if (obj != null) {
       configurationDao.delete(obj);
     }
 
     // and now check data for something that is not in database
-    assertNotNull(configurationDao.getValueByType(ConfigurationElementType.LOGO_TEXT));
+    assertNotNull(configurationDao.getValueByType(ConfigurationElementType.LEFT_LOGO_TEXT));
 
   }