Skip to content

Commit

Permalink
Remove carve-outs in test code
Browse files Browse the repository at this point in the history
  • Loading branch information
Philip Whitehouse committed Dec 31, 2024
1 parent fa3e1e8 commit ac023d6
Showing 1 changed file with 1 addition and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,6 @@ public void testRefreshMessageStore() throws Exception {
public void testSetAndGetMessageWithAsciiCharacters() throws IOException {
MessageStore underTest = getStore();

if (underTest instanceof SleepycatStore) {
return;
}

underTest.set(1, "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVXYZ0123456789");

List<String> messages = new ArrayList<>();
Expand All @@ -188,11 +184,7 @@ public void testSetAndGetMessageWithAsciiCharacters() throws IOException {

public void testSetAndGetMessageWithUnicodeCharacters() throws IOException {
MessageStore underTest = getStore();

if (underTest instanceof SleepycatStore) {
return;
}


CharsetSupport.setCharset("UTF-8");

try {
Expand Down

0 comments on commit ac023d6

Please sign in to comment.