Skip to content

Commit 3f4fb62

Browse files
committed
fix test
1 parent 1f7f2d2 commit 3f4fb62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-r2dbc/src/test/java/org/springframework/data/r2dbc/core/ReactiveInsertOperationUnitTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void shouldUpdateInTable() {
109109

110110
StatementRecorder.RecordedStatement statement = recorder.getCreatedStatement(s -> s.startsWith("INSERT"));
111111

112-
assertThat(statement.getSql()).isEqualTo("INSERT INTO the_table (\"THE_NAME\") VALUES ($1)");
112+
assertThat(statement.getSql()).isEqualTo("INSERT INTO \"the_table\" (\"THE_NAME\") VALUES ($1)");
113113
}
114114

115115
static class Person {

0 commit comments

Comments
 (0)