diff options
author | Jon Atack <jon@atack.com> | 2022-02-17 12:54:39 +0100 |
---|---|---|
committer | Jon Atack <jon@atack.com> | 2022-02-21 19:07:29 +0100 |
commit | 48742693acc9de837735674057c9aae2fe90bd1d (patch) | |
tree | 77aafdc1af1ed5016ef365e07dce7c63496d3aab /test/util | |
parent | e670edd43441ecb6e5978d65348501c57d856030 (diff) |
Replace "can not" with "cannot" in docs, user messages, and tests
Diffstat (limited to 'test/util')
-rwxr-xr-x | test/util/test_runner.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/util/test_runner.py b/test/util/test_runner.py index aa8fd6eee5..a7fc3b1dc1 100755 --- a/test/util/test_runner.py +++ b/test/util/test_runner.py @@ -93,7 +93,7 @@ def bctest(testDir, testObj, buildenv): try: outputData = open(os.path.join(testDir, outputFn), encoding="utf8").read() except: - logging.error("Output file " + outputFn + " can not be opened") + logging.error("Output file " + outputFn + " cannot be opened") raise if not outputData: logging.error("Output data missing for " + outputFn) |