diff --git a/tests/lang/eval-okay-with.exp b/tests/lang/eval-okay-with.exp index 033e8d3aba..2c9bd8ba0e 100644 --- a/tests/lang/eval-okay-with.exp +++ b/tests/lang/eval-okay-with.exp @@ -1,19 +1 @@ -let { - - a = "xyzzy"; - - as = { - a = "foo"; - b = "bar"; - }; - - bs = { - a = "bar"; - }; - - x = with as; a + b; - - y = with as; with bs; a + b; - - body = x + y; -} +Str("xyzzybarxyzzybar",[]) diff --git a/tests/lang/eval-okay-with.nix b/tests/lang/eval-okay-with.nix index ea4ea612de..033e8d3aba 100644 --- a/tests/lang/eval-okay-with.nix +++ b/tests/lang/eval-okay-with.nix @@ -7,7 +7,13 @@ let { b = "bar"; }; + bs = { + a = "bar"; + }; + x = with as; a + b; - body = x; + y = with as; with bs; a + b; + + body = x + y; }