Skip to content

Commit

Permalink
objectionary#3236 fix qulice violations
Browse files Browse the repository at this point in the history
  • Loading branch information
c71n93 committed Aug 5, 2024
1 parent 549bec9 commit 274d4d0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions eo-runtime/src/test/java/EOorg/EOeolang/EOsys/EOposixTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,13 @@ public void invokesGetpidCorrectly() {
@DisabledOnOs(OS.WINDOWS)
public void invokesWriteCorrectly() {
final String msg = "Hello, world!\n";
final Phi args = new Data.ToPhi(new Phi[] {
new Data.ToPhi(1L),
new Data.ToPhi(msg),
new Data.ToPhi(msg.length())
});
final Phi args = new Data.ToPhi(
new Phi[] {
new Data.ToPhi(1L),
new Data.ToPhi(msg),
new Data.ToPhi(msg.length()),
}
);
MatcherAssert.assertThat(
"The \"getpid\" system call was expected to work correctly",
new Dataized(
Expand Down

0 comments on commit 274d4d0

Please sign in to comment.