Skip to content

Commit 86ecf36

Browse files
committed
Tests@PostgreSQL - Fix CacheTest
1 parent 8a2bb24 commit 86ecf36

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

activejdbc/src/test/java/org/javalite/activejdbc/statement_providers/PostgreSQLStatementProvider.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,7 @@ public List<String> getPopulateStatements(String table) {
102102
"INSERT INTO doctors (first_name, last_name, discipline) VALUES('John', 'Doe', 'otolaryngology');",
103103
"INSERT INTO doctors (first_name, last_name, discipline) VALUES('Hellen', 'Hunt', 'dentistry');",
104104
"INSERT INTO doctors (first_name, last_name, discipline) VALUES('John', 'Druker', 'oncology');",
105-
"INSERT INTO doctors (id, first_name, last_name, discipline) VALUES(4, 'Henry', 'Jekyll', 'pathology');"
106-
105+
"INSERT INTO doctors (first_name, last_name, discipline) VALUES('Henry', 'Jekyll', 'pathology');"
107106
);
108107
} else if (table.equals("doctors_patients")) {
109108
statements = Arrays.asList(

0 commit comments

Comments
 (0)