diff options
| author | MarcoFalke <[email protected]> | 2018-07-22 10:43:57 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-07-22 10:32:38 -0400 |
| commit | fa451511a1150cdc19475dc0110fdf5e8ea4821f (patch) | |
| tree | 18a95146c4010a9e819447d1cd2b359e9e3c07ad /src/test/netbase_tests.cpp | |
| parent | Merge #11762: Avoid locking mutexes that are already held by the same thread (diff) | |
| download | discoin-fa451511a1150cdc19475dc0110fdf5e8ea4821f.tar.xz discoin-fa451511a1150cdc19475dc0110fdf5e8ea4821f.zip | |
doc: Adjust bitcoincore.org links
Diffstat (limited to 'src/test/netbase_tests.cpp')
| -rw-r--r-- | src/test/netbase_tests.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/netbase_tests.cpp b/src/test/netbase_tests.cpp index bc90e5ae0..67f7c37f3 100644 --- a/src/test/netbase_tests.cpp +++ b/src/test/netbase_tests.cpp @@ -82,10 +82,10 @@ bool static TestSplitHost(std::string test, std::string host, int port) BOOST_AUTO_TEST_CASE(netbase_splithost) { - BOOST_CHECK(TestSplitHost("www.bitcoin.org", "www.bitcoin.org", -1)); - BOOST_CHECK(TestSplitHost("[www.bitcoin.org]", "www.bitcoin.org", -1)); - BOOST_CHECK(TestSplitHost("www.bitcoin.org:80", "www.bitcoin.org", 80)); - BOOST_CHECK(TestSplitHost("[www.bitcoin.org]:80", "www.bitcoin.org", 80)); + BOOST_CHECK(TestSplitHost("www.bitcoincore.org", "www.bitcoincore.org", -1)); + BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]", "www.bitcoincore.org", -1)); + BOOST_CHECK(TestSplitHost("www.bitcoincore.org:80", "www.bitcoincore.org", 80)); + BOOST_CHECK(TestSplitHost("[www.bitcoincore.org]:80", "www.bitcoincore.org", 80)); BOOST_CHECK(TestSplitHost("127.0.0.1", "127.0.0.1", -1)); BOOST_CHECK(TestSplitHost("127.0.0.1:8333", "127.0.0.1", 8333)); BOOST_CHECK(TestSplitHost("[127.0.0.1]", "127.0.0.1", -1)); |