Skip to content

Commit 54f3770

Browse files
committed
Change database entry value to be more distinct.
1 parent e624777 commit 54f3770

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/owasp/benchmark/helpers/DatabaseHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ private static void initData() {
149149
executeSQLCommand("INSERT INTO SCORE (nick, score) VALUES('foo', 40)");
150150

151151
executeSQLCommand(
152-
"INSERT INTO EMPLOYEE (first_name, last_name, salary) VALUES('foo', 'bar', 100)");
152+
"INSERT INTO EMPLOYEE (first_name, last_name, salary) VALUES('foo', 'bar', 34567)");
153153
conn.commit();
154154
} catch (Exception e1) {
155155
System.out.println("Problem with database init/reset: " + e1.getMessage());

0 commit comments

Comments
 (0)