Skip to content

Commit

Permalink
Update version to 7.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
duydo committed Apr 19, 2021
1 parent 49a3ebb commit 36efc6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch-analysis-vietnamese</artifactId>
<version>7.11.1</version>
<version>7.11.2</version>
<packaging>jar</packaging>
<name>elasticsearch-analysis-vietnamese</name>
<url>https://github.com/duydo/elasticsearch-analysis-vietnamese/</url>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void testSimpleVietnameseAnalysis() throws IOException {

analyzer = analysis.indexAnalyzers.get("my_analyzer");
assertNotNull(analyzer);
assertThat(analyzer.analyzer(), instanceOf(CustomAnalyzer.class));
assertThat(analyzer.analyzer(), instanceOf(VietnameseAnalyzer.class));
assertThat(analyzer.analyzer().tokenStream(null, new StringReader("")), instanceOf(VietnameseTokenizer.class));

}
Expand Down

0 comments on commit 36efc6c

Please sign in to comment.