Skip to content

Commit

Permalink
tests/nixos/fetchurl: drop unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Sep 28, 2024
1 parent c1ecf0b commit 410853d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/nixos/fetchurl.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Test whether builtin:fetchurl properly performs TLS certificate
# checks on HTTPS servers.

{ lib, config, pkgs, ... }:
{ pkgs, ... }:

let

Expand All @@ -25,7 +25,7 @@ in
name = "nss-preload";

nodes = {
machine = { lib, pkgs, ... }: {
machine = { pkgs, ... }: {
services.nginx = {
enable = true;

Expand Down Expand Up @@ -60,7 +60,7 @@ in
};
};

testScript = { nodes, ... }: ''
testScript = ''
machine.wait_for_unit("nginx")
machine.wait_for_open_port(443)
Expand Down

0 comments on commit 410853d

Please sign in to comment.