From d66cdfd0f4f2c38ac6e9645fd6b4621d7852196f Mon Sep 17 00:00:00 2001 From: Ivan Kniazkov Date: Mon, 4 Dec 2023 13:28:36 +0300 Subject: [PATCH] Fixed test covering "if" statement in Java --- src/test/resources/unification/if_stmt/IfStmt.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/resources/unification/if_stmt/IfStmt.java b/src/test/resources/unification/if_stmt/IfStmt.java index 96db258..c2bc9ab 100644 --- a/src/test/resources/unification/if_stmt/IfStmt.java +++ b/src/test/resources/unification/if_stmt/IfStmt.java @@ -4,7 +4,7 @@ public int sign(int x) { return 1; } if (x < 0) { - return 0; + return -1; } return 0; }