Skip to content

Commit

Permalink
Update to Liblouis 3.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bertfrees committed Oct 8, 2023
1 parent 95f6560 commit 005e203
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<dependency>
<groupId>org.liblouis</groupId>
<artifactId>louis</artifactId>
<version>3.24.0-p1</version>
<version>3.27.0-p1</version>
<type>nar</type>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/liblouis/DefaultTablesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public void testCountAvailableLanguages() {
Set<String> locales = new HashSet<String>();
for (Table t : Louis.listTables())
locales.add(t.getInfo().get("language"));
assertEquals(104, locales.size());
assertEquals(105, locales.size());
}

@Test
Expand All @@ -31,6 +31,6 @@ public void testCompileAllTables() throws CompilationException {
t.getTranslator();
count++;
}
assertEquals(201, count);
assertEquals(204, count);
}
}
2 changes: 1 addition & 1 deletion src/test/java/org/liblouis/TranslatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public class TranslatorTest {
@Test
public void testVersion() {
assertEquals(
"3.24.0-p1",
"3.27.0-p1",
Louis.getVersion());
}

Expand Down

0 comments on commit 005e203

Please sign in to comment.