From d9dfe659105dbca51cf1284c92d8956f9851d253 Mon Sep 17 00:00:00 2001 From: sterni Date: Wed, 19 Oct 2022 18:55:13 +0200 Subject: fix(tvix/eval): fix path in notyetpassing tests cl/7036 moved these paths around, but neglected to update the relative paths they contain. Without these updated, they will never start passing! Change-Id: Ib16468611af59729883e501be8486f43d850fd58 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7046 Autosubmit: sterni Tested-by: BuildkiteCI Reviewed-by: tazjin --- tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix') diff --git a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix index 0b18d94131..76213a9541 100644 --- a/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix +++ b/tvix/eval/src/tests/nix_tests/notyetpassing/eval-okay-import.nix @@ -6,6 +6,6 @@ let scopedImport = attrs: fn: scopedImport (overrides // attrs) fn; builtins = builtins // overrides; - } // import ./lib.nix; + } // import ./../lib.nix; -in scopedImport overrides ./imported.nix +in scopedImport overrides ./../imported.nix -- cgit 1.4.1