Skip to content

Commit 4e885e9

Browse files
committed
1 parent 6e9b5f5 commit 4e885e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

unicodetools/src/test/java/org/unicode/text/UCD/TestVersionedSymbolTable.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import org.junit.jupiter.api.BeforeEach;
1111
import org.junit.jupiter.api.Test;
1212
import org.unicode.props.IndexUnicodeProperties;
13-
import org.unicode.props.UcdProperty;
13+
import org.unicode.props.UnicodeProperty;
1414

1515
/**
1616
* Notice to the maintainer: These tests check that the UnicodeSet property queries are correctly
@@ -26,11 +26,13 @@ void setUp() {
2626
oldDefault = UnicodeSet.getDefaultXSymbolTable();
2727
System.err.println("Setting default XSymbolTable to VersionedSymbolTable.forDevelopment…");
2828
UnicodeSet.setDefaultXSymbolTable(VersionedSymbolTable.forDevelopment());
29+
UnicodeProperty.ResetCacheProperties();
2930
}
3031

3132
@AfterEach
3233
void tearDown() {
3334
UnicodeSet.setDefaultXSymbolTable(oldDefault);
35+
UnicodeProperty.ResetCacheProperties();
3436
System.err.println("Restored default XSymbolTable.");
3537
}
3638

0 commit comments

Comments
 (0)