From fffd8a7de7e0c095c4c357145274a291e4d8bcda Mon Sep 17 00:00:00 2001 From: Damjan Smickovski Date: Thu, 7 Dec 2023 10:28:05 +0100 Subject: [PATCH] Adjusted naming --- integration-tests/default.nix | 2 +- integration-tests/flake.lock | 6 +++--- integration-tests/flake.nix | 6 +++--- integration-tests/smoke/default.nix | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/integration-tests/default.nix b/integration-tests/default.nix index d9476241266..5dc72302416 100644 --- a/integration-tests/default.nix +++ b/integration-tests/default.nix @@ -9,6 +9,6 @@ in { # exports a package. to be consumed by the flake.nix packages = { - integration-tests_test-run-smoke = test-run-smoke.package; + integration-tests_run-smoke = test-run-smoke.package; }; } diff --git a/integration-tests/flake.lock b/integration-tests/flake.lock index 70d088e4e4d..ae1a872fabb 100644 --- a/integration-tests/flake.lock +++ b/integration-tests/flake.lock @@ -295,12 +295,12 @@ "flake": false, "locked": { "lastModified": 1, - "narHash": "sha256-7vxtoPQQarUWy3nPJdjzInUDcPrH/TgE83pgFFx9eP8=", - "path": "/nix/store/7bi8q2llb9pvgfzc41xlw43j4zvwiirn-source/integration-tests", + "narHash": "sha256-5opfeYSAUWRs9vmSNlRQuD9XxnRjIH6+1ee0U815S+s=", + "path": "/nix/store/p8srg1wh944kx3h1pp1qyzsrg8y9rl03-source/integration-tests", "type": "path" }, "original": { - "path": "/nix/store/7bi8q2llb9pvgfzc41xlw43j4zvwiirn-source/integration-tests", + "path": "/nix/store/p8srg1wh944kx3h1pp1qyzsrg8y9rl03-source/integration-tests", "type": "path" } }, diff --git a/integration-tests/flake.nix b/integration-tests/flake.nix index 992710a5c86..56df8615496 100644 --- a/integration-tests/flake.nix +++ b/integration-tests/flake.nix @@ -74,7 +74,7 @@ inputs.chainlink.packages.${system}.chainlink # add all local plugins of this project - self.packages.${system}.integration-tests_test-run-smoke + self.packages.${system}.integration-tests_run-smoke ]++ pkgs.lib.optionals pkgs.stdenv.isDarwin [ # Additional darwin specific inputs can be set here pkgs.libiconv @@ -82,9 +82,9 @@ ]; }; - apps.integration-tests_test-run-smoke = { + apps.integration-tests_run-smoke = { type = "app"; - program = "${self.packages.${system}.integration-tests_run-smoke}/bin/integration-tests.test-run-smoke"; + program = "${self.packages.${system}.integration-tests_run-smoke}/bin/integration-tests_run-smoke"; }; }) ); diff --git a/integration-tests/smoke/default.nix b/integration-tests/smoke/default.nix index cd2ebf6eb06..e7990ba5889 100644 --- a/integration-tests/smoke/default.nix +++ b/integration-tests/smoke/default.nix @@ -1,7 +1,7 @@ { pkgs }: let - scriptName = "integration-tests_test-run-smoke"; + scriptName = "integration-tests_run-smoke"; go = pkgs.go_1_21; scriptBuildInputs = with pkgs; [ go go-ethereum ]; # add geth to handle missing underlying dependencies testDir = toString ./.;