From db8453094ec3594e3fe72803b87175e92f3e8570 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 22 Oct 2024 09:18:28 -0400 Subject: [PATCH] spelling: execute Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- test/com/jpexs/decompiler/flash/gui/FlashPlayerTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/com/jpexs/decompiler/flash/gui/FlashPlayerTest.java b/test/com/jpexs/decompiler/flash/gui/FlashPlayerTest.java index d8eb17079..e05ee03a0 100644 --- a/test/com/jpexs/decompiler/flash/gui/FlashPlayerTest.java +++ b/test/com/jpexs/decompiler/flash/gui/FlashPlayerTest.java @@ -167,7 +167,7 @@ public class FlashPlayerTest { for (AS3ExecuteTask task : tasks) { System.out.println("Flash result (" + task.description + "): " + task.flashResult); - System.out.println("FFDec execte result: " + task.ffdecResult); + System.out.println("FFDec execute result: " + task.ffdecResult); if (!task.ffdecResult.equals(task.flashResult)) { System.out.println(code.toASMSource(testAbc, testAbc.constants)); } @@ -221,7 +221,7 @@ public class FlashPlayerTest { for (AS3ExecuteTask task : tasks) { System.out.println("Flash result (" + task.description + "): " + task.flashResult); - System.out.println("FFDec execte result: " + task.ffdecResult); + System.out.println("FFDec execute result: " + task.ffdecResult); assertEquals(task.ffdecResult, task.flashResult); } } @@ -364,7 +364,7 @@ public class FlashPlayerTest { for (AS3ExecuteTask task : tasks) { if (!task.flashResult.equals(task.ffdecResult)) { System.out.println("Flash result (" + task.description + "): " + task.flashResult); - System.out.println("FFDec execte result: " + task.ffdecResult); + System.out.println("FFDec execute result: " + task.ffdecResult); expeced.append(task.flashResult).append(Helper.newLine); current.append(task.ffdecResult).append(Helper.newLine); }