diff --git a/src/main/java/Team5/SmartTowns/Landmarks/Landmarks.java b/src/main/java/Team5/SmartTowns/Landmarks/Landmarks.java
index 27eb07a2f7c5458556b22cf4c50c65a4e26478fe..506c31f2f210dcce56357e1af31dba8ef3fa7a72 100644
--- a/src/main/java/Team5/SmartTowns/Landmarks/Landmarks.java
+++ b/src/main/java/Team5/SmartTowns/Landmarks/Landmarks.java
@@ -40,6 +40,4 @@ public class Landmarks {
         this.landmarkName = landmarkName;
         this.landmarkDescription = landmarkDescription;
         this.landmarkLocation = landmarkLocation;    }
-        // ? URl check
-
 }
diff --git a/src/main/resources/data.sql b/src/main/resources/data.sql
index d3bcf1927af425cf2fb76b026757081d1c5af951..0e1eb096cf6d40e21f1877f7d950deab910017e0 100644
--- a/src/main/resources/data.sql
+++ b/src/main/resources/data.sql
@@ -56,5 +56,9 @@ insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '1', tru
 insert into stickerprogress (userID, stickerID, hasSticker) value ('1', '3', true);
 insert into stickerprogress (userID, stickerID, hasSticker) value ('2', '2', true);
 
+delete from dragonstale;
 insert into dragonstale (landmarkID, landmarkName, landmarkDescription) value (1, 'A scent of...Dragon', 'The Dragon has been spotted near by, find the QR code to continue');
-insert into dragonstale (landmarkID, landmarkName, landmarkDescription) value (2, 'They''ve been found!', 'Don''t let them escape, find the next QR code to continue!');
\ No newline at end of file
+insert into dragonstale (landmarkID, landmarkName, landmarkDescription) value (2, 'They''ve been found!', 'Don''t let them escape, find the next QR code to continue!');
+
+delete from testuser;
+insert into testuser (userID, user_name, qrCodeScan) value (1, 'Dave', JSON_OBJECT('one', true, 'two', false, 'three', false));
\ No newline at end of file