Skip to content

Commit

Permalink
Update to Liblouis v3.30.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bertfrees committed Jun 5, 2024
1 parent 33fd2ba commit 793a0dd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.27.0-p2</version>
<version>3.30.0-p1</version>
<type>nar</type>
</dependency>
</dependencies>
Expand Down
6 changes: 3 additions & 3 deletions src/test/java/org/liblouis/DefaultTablesTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class DefaultTablesTest {
@Test
public void testTranslateDutch() throws Exception {
assertEquals(
"⠨foobar",
"⠨Foobar",
Translator.find("locale:nl grade:0").translate("Foobar", null, null, null).getBraille());
}

Expand All @@ -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(105, locales.size());
assertEquals(114, locales.size());
}

@Test
Expand All @@ -31,6 +31,6 @@ public void testCompileAllTables() throws CompilationException {
t.getTranslator();
count++;
}
assertEquals(204, count);
assertEquals(218, 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.27.0-p2",
"3.30.0-p1",
Louis.getVersion());
}

Expand Down

0 comments on commit 793a0dd

Please sign in to comment.