Skip to content

Commit

Permalink
update antibug
Browse files Browse the repository at this point in the history
  • Loading branch information
teletha committed Aug 22, 2024
1 parent 7212fd0 commit 7dfbae2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/test/java/kiss/TranscriptTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class TranscriptTest {
static String originalLanguage;

@RegisterExtension
static final CleanRoom room = new CleanRoom();
static final CleanRoom room = new CleanRoom(true);

@BeforeEach
void initialize() {
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/kiss/xml/ReadTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/
package kiss.xml;

import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.*;

import java.io.ByteArrayInputStream;
import java.io.StringReader;
Expand All @@ -26,7 +26,7 @@
class ReadTest {

@RegisterExtension
static CleanRoom room = new CleanRoom();
static CleanRoom room = new CleanRoom(true);

@Test
void elementName() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/kiss/xml/XMLWriterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class XMLWriterTest {
static final String EOL = "\r\n";

@RegisterExtension
static CleanRoom room = new CleanRoom();
static CleanRoom room = new CleanRoom(true);

@Test
void write() throws Exception {
Expand Down

0 comments on commit 7dfbae2

Please sign in to comment.