Skip to content

Commit

Permalink
Get rid of warning: Corrupted channel by directly writing to native s…
Browse files Browse the repository at this point in the history
…tream in forked JVM 1
  • Loading branch information
atraplet committed Aug 1, 2024
1 parent 222002b commit 24f533e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/ustermetrics/ecos4j/ModelTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ void setupAfterOptimizeThrowsException() {
val exception = assertThrows(IllegalStateException.class, () -> {
try (val model = new Model()) {
model.setup(l, q, nExC, gpr, gjc, gir, c, h, apr, ajc, air, b);
model.setParameters(Parameters.builder().verbose(true).build());
model.setParameters(Parameters.builder().verbose(false).build());
model.optimize();
model.setup(l, q, nExC, gpr, gjc, gir, c, h);
}
Expand Down

0 comments on commit 24f533e

Please sign in to comment.