Skip to content

Commit 5932aa1

Browse files
committed
[type: typo] (test) Fix "After" typo
1 parent 07c13e7 commit 5932aa1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/test/java/org/apache/ibatis/jdbc/ScriptRunnerTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ void shouldReturnWarningIfEndOfLineTerminatorNotFound() throws Exception {
113113
}
114114

115115
@Test
116-
void commentAferStatementDelimiterShouldNotCauseRunnerFail() throws Exception {
116+
void commentAfterStatementDelimiterShouldNotCauseRunnerFail() throws Exception {
117117
DataSource ds = createUnpooledDataSource(JPETSTORE_PROPERTIES);
118118
String resource = "org/apache/ibatis/jdbc/ScriptCommentAfterEOLTerminator.sql";
119119
try (Connection conn = ds.getConnection(); Reader reader = Resources.getResourceAsReader(resource)) {

src/test/java/org/apache/ibatis/submitted/force_flush_on_select/ForceFlushOnSelectTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void updateShouldFlushLocalCache() {
118118
}
119119

120120
@Test
121-
void selectShouldFlushLocalCacheIfFlushLocalCacheAtferEachStatementIsTrue() throws SQLException {
121+
void selectShouldFlushLocalCacheIfFlushLocalCacheAfterEachStatementIsTrue() throws SQLException {
122122
sqlSessionFactory.getConfiguration().setLocalCacheScope(LocalCacheScope.STATEMENT);
123123
try (SqlSession sqlSession = sqlSessionFactory.openSession(ExecutorType.SIMPLE)) {
124124
PersonMapper personMapper = sqlSession.getMapper(PersonMapper.class);

0 commit comments

Comments
 (0)