about summary refs log tree commit diff
path: root/tests/parallel.nix.in
diff options
context:
space:
mode:
Diffstat (limited to 'tests/parallel.nix.in')
-rw-r--r--tests/parallel.nix.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/parallel.nix.in b/tests/parallel.nix.in
index 41d6776d1bbe..29eac17523f6 100644
--- a/tests/parallel.nix.in
+++ b/tests/parallel.nix.in
@@ -11,9 +11,9 @@ let {
 
   a = mkDrv "a" [];
   b = mkDrv "b" [a];
-  c = mkDrv "c" [b];
-  d = mkDrv "d" [c];
+  c = mkDrv "c" [a];
+  d = mkDrv "d" [a];
   e = mkDrv "e" [b c d];
 
   body = e;
-}
\ No newline at end of file
+}