about summary refs log tree commit diff
path: root/pkgs/tools/networking/curl
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-05-27 00:04:56 +0100
committerRobert Scott <code@humanleg.org.uk>2022-05-27 00:04:56 +0100
commite9a0f109e5208f589c0bf9c05d4e93a25f595edc (patch)
tree3d5c9d44a083b3c0cc411d2a2a5f4fcf1259ef75 /pkgs/tools/networking/curl
parentf2366ef1e27526aeac0be529c214ca125f869059 (diff)
curl: deduplicate definition of passthru.tests
Diffstat (limited to 'pkgs/tools/networking/curl')
-rw-r--r--pkgs/tools/networking/curl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix
index e961fa152f785..a909db97fa076 100644
--- a/pkgs/tools/networking/curl/default.nix
+++ b/pkgs/tools/networking/curl/default.nix
@@ -177,8 +177,6 @@ stdenv.mkDerivation rec {
   '';
 
   passthru = {
-    # Additional checking with support http3 protocol.
-    tests.nginx-http3 = nixosTests.nginx-http3;
     inherit opensslSupport openssl;
     tests = {
       inherit curlpp coeurl;
@@ -186,6 +184,8 @@ stdenv.mkDerivation rec {
       ocaml-curly = ocamlPackages.curly;
       php-curl = phpExtensions.curl;
       pycurl = python3.pkgs.pycurl;
+      # Additional checking with support http3 protocol.
+      inherit (nixosTests) nginx-http3;
     };
   };