fixed yet another regression with respect to newlines (SPR-7449)
This commit is contained in:
parent
3d2dd447af
commit
1503a139e2
|
|
@ -263,7 +263,7 @@ public class ResourceDatabasePopulator implements DatabasePopulator {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (c == '\n' || c == '\t') {
|
else if (c == '\n' || c == '\t') {
|
||||||
continue;
|
c = ' ';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sb.append(c);
|
sb.append(c);
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,6 @@ public class DatabasePopulatorTests {
|
||||||
assertTestDatabaseCreated();
|
assertTestDatabaseCreated();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Ignore("Disabled until SPR-7449 is resolved")
|
|
||||||
@Test
|
@Test
|
||||||
public void scriptWithEolBetweenTokens() throws Exception {
|
public void scriptWithEolBetweenTokens() throws Exception {
|
||||||
databasePopulator.addScript(resourceLoader.getResource("users-schema.sql"));
|
databasePopulator.addScript(resourceLoader.getResource("users-schema.sql"));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue