From 5d66fb4699feb857862955d8baf159db43709a0b Mon Sep 17 00:00:00 2001 From: mxaddict Date: Sat, 17 Feb 2024 05:06:46 +0800 Subject: [PATCH] [Branding] bitcoin -> navcoin --- test/util/test_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/util/test_runner.py b/test/util/test_runner.py index a9c7235c31416..4f6d56250b9c5 100755 --- a/test/util/test_runner.py +++ b/test/util/test_runner.py @@ -74,9 +74,9 @@ def bctest(testDir, testObj, buildenv): """ # Get the exec names and arguments execprog = os.path.join(buildenv["BUILDDIR"], "src", testObj["exec"] + buildenv["EXEEXT"]) - if testObj["exec"] == "./bitcoin-util": + if testObj["exec"] == "./navcoin-util": execprog = os.getenv("BITCOINUTIL", default=execprog) - elif testObj["exec"] == "./bitcoin-tx": + elif testObj["exec"] == "./navcoin-tx": execprog = os.getenv("BITCOINTX", default=execprog) execargs = testObj['args']