Skip to content

Commit 96b250d

Browse files
committed
Corrected case of table reference in test
1 parent 31e4eaf commit 96b250d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/java/com/ffxivcensus/gatherer/GathererControllerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void testRunMain() throws IOException, SAXException, ParserConfigurationE
9090

9191
//Test that records were successfully written to db
9292
java.sql.Connection conn = openConnection();
93-
String strSQL = "SELECT * FROM tblPlayers WHERE `id`>=" + arrParams[0] + " AND `id`<=" + arrParams[1] +";";
93+
String strSQL = "SELECT * FROM tblplayers WHERE `id`>=" + arrParams[0] + " AND `id`<=" + arrParams[1] +";";
9494
try {
9595
Statement stmt = conn.createStatement();
9696
rs = stmt.executeQuery(strSQL);

0 commit comments

Comments
 (0)