From 9d45f79329d29062ccd3596c7168f46b3f6ee2e5 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Mon, 28 Mar 2022 19:03:46 -0600 Subject: [PATCH] fix python testOr --- kiss/src/test/cases/BasicTestCase.kiss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kiss/src/test/cases/BasicTestCase.kiss b/kiss/src/test/cases/BasicTestCase.kiss index a1b84d2e..69095864 100644 --- a/kiss/src/test/cases/BasicTestCase.kiss +++ b/kiss/src/test/cases/BasicTestCase.kiss @@ -179,7 +179,7 @@ // If the last value is falsy it can still be returned without breaking // the expected behavior of or -- which also allows for the (or ) // idiom for empty arrays and strings - (Assert.equals (.toString []) (.toString (or null []))) + (Assert.equals (Std.string []) (Std.string (or null []))) (Assert.equals "" (or null [] ""))) (function _testAnd []