From 6cbd0d93ae80176a853c31ca8cf5891bd6fb0646 Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Mon, 12 Dec 2022 11:57:13 +0100 Subject: [PATCH] tests: rename `clightningReplication` -> `clightning-replication` The test name now matches the file name. --- test/clightning-replication.nix | 2 +- test/run-tests.sh | 2 +- test/tests.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/clightning-replication.nix b/test/clightning-replication.nix index 4ee08b5..b607876 100644 --- a/test/clightning-replication.nix +++ b/test/clightning-replication.nix @@ -1,4 +1,4 @@ -# You can run this test via `run-tests.sh -s clightningReplication` +# You can run this test via `run-tests.sh -s clightning-replication` makeTestVM: pkgs: with pkgs.lib; diff --git a/test/run-tests.sh b/test/run-tests.sh index 57296de..97957e3 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -272,7 +272,7 @@ buildable=( full regtest hardened - clightningReplication + clightning-replication lndPruned ) buildable() { buildTests buildable "$@"; } diff --git a/test/tests.nix b/test/tests.nix index cd6c824..36d192e 100644 --- a/test/tests.nix +++ b/test/tests.nix @@ -404,7 +404,7 @@ in { ) scenarios; in { - clightningReplication = import ./clightning-replication.nix makeTestVM pkgs; + clightning-replication = import ./clightning-replication.nix makeTestVM pkgs; } // mainTests; tests = makeTests scenarios;