Skip to content

Commit

Permalink
Fix tests for Windows
Browse files Browse the repository at this point in the history
(◔_◔)
  • Loading branch information
shreyasm-dev committed Jul 24, 2023
1 parent 2ec544b commit 091f038
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion integration/java/CallStaticMethod.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ public static void main(String[] args) {
}

public static void callback() {
System.out.println("Static callback");
System.out.print("Static callback\n");
}
}
2 changes: 1 addition & 1 deletion integration/java/Hello.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public class Hello {
}

public static void main(String[] args) {
System.out.println(Hello.hello("world"));
System.out.print(Hello.hello("world") + "\n");
}
}

0 comments on commit 091f038

Please sign in to comment.