From b903863fe75e62b6300072eef3a37a47756071eb Mon Sep 17 00:00:00 2001 From: Umur Ozkul Date: Fri, 22 Apr 2022 00:07:34 +0200 Subject: [PATCH] eval partial all tested --- .../__tests__/Reducer/Reducer_externalBindings_test.res | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/squiggle-lang/__tests__/Reducer/Reducer_externalBindings_test.res b/packages/squiggle-lang/__tests__/Reducer/Reducer_externalBindings_test.res index 5fb7b9f5..f74dcf7f 100644 --- a/packages/squiggle-lang/__tests__/Reducer/Reducer_externalBindings_test.res +++ b/packages/squiggle-lang/__tests__/Reducer/Reducer_externalBindings_test.res @@ -39,7 +39,7 @@ describe("Eval with Bindings", () => { Partial code is a partial code fragment that is cut out from a larger code. Therefore it does not end with an expression. */ -Only.describe("Eval Partial", () => { +describe("Eval Partial", () => { testEvalPartialBindingsToBe( // A partial cannot end with an expression "x", @@ -52,7 +52,7 @@ Only.describe("Eval Partial", () => { list{("x", ExpressionValue.EvNumber(1.))}, "Ok({x: 1, y: 2})", ) - MyOnly.testEvalPartialBindingsToBe( + testEvalPartialBindingsToBe( "y = x+1; z = y", list{("x", ExpressionValue.EvNumber(1.))}, "Ok({x: 1, y: 2, z: 2})",