[#1189]: TableMapping regression for SQLite database - fixed testcase

This commit is contained in:
Lukas Eder 2012-02-26 19:17:44 +00:00
parent f9b4cc4448
commit 70bd1df501

View File

@ -124,7 +124,7 @@ extends BaseTest<A, B, S, B2S, BS, L, X, DATE, D, T, U, I, IPK, T658, T725, T639
Settings settings = new Settings()
.withRenderMapping(new RenderMapping()
.withSchemata(new MappedSchema()
.withInput(TAuthor().getSchema().getName())
.withInput(TAuthor().getSchema() == null ? "" : TAuthor().getSchema().getName())
.withTables(
new MappedTable().withInput(TAuthor().getName()).withOutput(VAuthor().getName()),
new MappedTable().withInput(TBook().getName()).withOutput(VBook().getName()))));