Skip to content

Commit b7f3f35

Browse files
author
lixiaopeng
committed
fix ci fail in windows
1 parent 56990f6 commit b7f3f35

12 files changed

+24
-24
lines changed

src/test/java/org/mybatis/spring/filter/xml/appContextAnnoFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextAspectJFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextAssignFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextCombinedFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
<!-- in-memory database and a datasource -->
3030
<jdbc:embedded-database id="dataSource">
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
32-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
32+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3333
</jdbc:embedded-database>
3434

3535

src/test/java/org/mybatis/spring/filter/xml/appContextCustFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextInvalidFilter.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextInvalidFilter1.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextInvalidFilter2.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727

2828
<!-- in-memory database and a datasource -->
2929
<jdbc:embedded-database id="dataSource">
30-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
30+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3232
</jdbc:embedded-database>
3333

3434

src/test/java/org/mybatis/spring/filter/xml/appContextPlaceHolder.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
<!-- in-memory database and a datasource -->
3030
<jdbc:embedded-database id="dataSource">
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
32-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
32+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3333
</jdbc:embedded-database>
3434

3535

src/test/java/org/mybatis/spring/filter/xml/appContextPlaceHolder1.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828

2929
<!-- in-memory database and a datasource -->
3030
<jdbc:embedded-database id="dataSource">
31-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-schema.sql"/>
32-
<jdbc:script location="classpath:org/mybatis/spring/batch/db/database-test-data.sql"/>
31+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-schema.sql"/>
32+
<jdbc:script location="classpath:org/mybatis/spring/sample/db/database-test-data.sql"/>
3333
</jdbc:embedded-database>
3434

3535

0 commit comments

Comments
 (0)