Skip to content

Commit

Permalink
junit-interface 0.13.3
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Sep 4, 2024
1 parent 01786d0 commit 5056a51
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ val jnaVersion = "5.12.0"
val jna = "net.java.dev.jna" % "jna" % jnaVersion

val jnaPlatform = "net.java.dev.jna" % "jna-platform" % jnaVersion
val junitInterface = "com.novocode" % "junit-interface" % "0.11"
val junitInterface = "com.github.sbt" % "junit-interface" % "0.13.3"
val nativePlatform = settingKey[String]("The target platform")
val nativeArch = settingKey[String]("The target architecture")
val nativeArtifact = settingKey[Path]("The target artifact location")
Expand Down
7 changes: 4 additions & 3 deletions src/test/java/org/scalasbt/ipcsocket/SocketTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SocketTest extends BaseSocketSetup {
public void testAssertEquals() throws IOException, InterruptedException {
withSocket(
sock -> {
System.out.println("SocketTest#testAssertEquals");
System.out.println("SocketTest#testAssertEquals(" + Boolean.toString(useJNI()) + ")");

ServerSocket serverSocket = newServerSocket(sock);

Expand Down Expand Up @@ -56,7 +56,8 @@ public void testAssertEquals() throws IOException, InterruptedException {
public void throwIOExceptionOnMissingFile() throws IOException, InterruptedException {
withSocket(
sock -> {
System.out.println("SocketTest#throwIOExceptionOnMissingFile");
System.out.println(
"SocketTest#throwIOExceptionOnMissingFile(" + Boolean.toString(useJNI()) + ")");

boolean caughtIOException = false;
Files.deleteIfExists(Paths.get(sock));
Expand All @@ -74,7 +75,7 @@ public void throwIOExceptionOnMissingFile() throws IOException, InterruptedExcep
public void shortReadWrite() throws IOException, InterruptedException {
withSocket(
sock -> {
System.out.println("SocketTest#shortReadWrite");
System.out.println("SocketTest#shortReadWrite(" + Boolean.toString(useJNI()) + ")");

ServerSocket serverSocket = newServerSocket(sock);

Expand Down

0 comments on commit 5056a51

Please sign in to comment.