Skip to content

Commit b1d89fa

Browse files
committed
Fair is foul and foul is fair
Left and right are hard to bear Signed-off-by: TheSilkMiner <thesilkminer@outlook.com>
1 parent a27c5bd commit b1d89fa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ScriptingExample/src/test/java/org/openzen/zenscript/scriptingexample/tests/actual_test/arithmethic_operators/AdditionsAndSubtractionTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ public void additionWorksWithDifferentTypes(String typeLeft, String typeRight) {
6363
@MethodSource("numberTypes")
6464
public void subtractionWorksWithDifferentTypes(String typeLeft, String typeRight) {
6565
ScriptBuilder.create()
66-
.add("var left = 29 as " + typeRight + ";")
67-
.add("var right = 13 as " + typeLeft + ";")
66+
.add("var left = 29 as " + typeLeft + ";")
67+
.add("var right = 13 as " + typeRight + ";")
6868
.add("var result = left - right;")
6969
.add("println(result);")
7070
.execute(this);

0 commit comments

Comments
 (0)