fixed yet another regression with respect to newlines (SPR-7449)

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@3560 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Juergen Hoeller 2010-08-10 22:36:36 +00:00
parent 4bd891ac22
commit 5294db8e62
2 changed files with 1 additions and 2 deletions

View File

@ -263,7 +263,7 @@ public class ResourceDatabasePopulator implements DatabasePopulator {
continue;
}
else if (c == '\n' || c == '\t') {
continue;
c = ' ';
}
}
sb.append(c);

View File

@ -71,7 +71,6 @@ public class DatabasePopulatorTests {
assertTestDatabaseCreated();
}
@Ignore("Disabled until SPR-7449 is resolved")
@Test
public void scriptWithEolBetweenTokens() throws Exception {
databasePopulator.addScript(resourceLoader.getResource("users-schema.sql"));