diff options
| author | MarcoFalke <[email protected]> | 2016-11-29 11:12:39 +0100 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-11-29 11:13:57 +0100 |
| commit | 7bd1aa566fb4a4fe194f209085649f2c722b0cff (patch) | |
| tree | 2456ea0d0cb68365b149524b4876d9b1b4828c37 /src/test | |
| parent | Merge #9219: doc: Improve windows build instructions using Linux subsystem (diff) | |
| parent | Fix some typos (diff) | |
| download | discoin-7bd1aa566fb4a4fe194f209085649f2c722b0cff.tar.xz discoin-7bd1aa566fb4a4fe194f209085649f2c722b0cff.zip | |
Merge #9233: Fix some typos
15fa95d Fix some typos (fsb4000)
Diffstat (limited to 'src/test')
| -rwxr-xr-x | src/test/bitcoin-util-test.py | 2 | ||||
| -rw-r--r-- | src/test/limitedmap_tests.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/bitcoin-util-test.py b/src/test/bitcoin-util-test.py index 4301b93b7..1c090b3f3 100755 --- a/src/test/bitcoin-util-test.py +++ b/src/test/bitcoin-util-test.py @@ -15,7 +15,7 @@ help_text="""Test framework for bitcoin utils. Runs automatically during `make check`. -Can also be run manually from the src directory by specifiying the source directory: +Can also be run manually from the src directory by specifying the source directory: test/bitcoin-util-test.py --srcdir='srcdir' [--verbose] """ diff --git a/src/test/limitedmap_tests.cpp b/src/test/limitedmap_tests.cpp index faaddffad..e3531486a 100644 --- a/src/test/limitedmap_tests.cpp +++ b/src/test/limitedmap_tests.cpp @@ -47,7 +47,7 @@ BOOST_AUTO_TEST_CASE(limitedmap_test) // make sure the item is present BOOST_CHECK(map.count(i) == 1); - // use the iterator to check for the expected key adn value + // use the iterator to check for the expected key and value BOOST_CHECK(it->first == i); BOOST_CHECK(it->second == i + 1); |