about summary refs log tree commit diff
path: root/tvix/eval
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-09-03T00·56+0300
committertazjin <tazjin@tvl.su>2022-09-08T19·54+0000
commit360c805efc8f0d4a6f6631fc229c09d8dea8a216 (patch)
tree4de2f26408b367a754b5f49502c0e140a37acf59 /tvix/eval
parent0af1df4be2a7dd660cb9370b0bbf97f4fb7ab150 (diff)
chore(tvix/eval): remove accidentally duplicated test r/4761
This is the same as `eval-okay-attrs-simple-inherit`.

Change-Id: I23878accc6cd62c16ec96601239838a385d31306
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6428
Reviewed-by: sterni <sternenseemann@systemli.org>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval')
-rw-r--r--tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.exp1
-rw-r--r--tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.nix2
2 files changed, 0 insertions, 3 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.exp b/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.exp
deleted file mode 100644
index 9ea79851a1..0000000000
--- a/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.exp
+++ /dev/null
@@ -1 +0,0 @@
-{ a = 15; }
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.nix
deleted file mode 100644
index 6d045643cc..0000000000
--- a/tvix/eval/src/tests/tvix_tests/eval-okay-attrs-inherit.nix
+++ /dev/null
@@ -1,2 +0,0 @@
-let a = 15;
-in { inherit a; }