diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-01-02 19:50:42 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-01-02 19:50:42 (GMT) |
commit | 68814f3ea56bd4f9e7dbc21309e5a8f509304c45 (patch) | |
tree | 1c848dfcc5102cb9d88782c54adac6e87b4b4cf1 /test | |
parent | df0cc7139f599093f07209efd85b98929d1b0457 (diff) | |
download | SCons-68814f3ea56bd4f9e7dbc21309e5a8f509304c45.zip SCons-68814f3ea56bd4f9e7dbc21309e5a8f509304c45.tar.gz SCons-68814f3ea56bd4f9e7dbc21309e5a8f509304c45.tar.bz2 |
[ci skip] typo in error message in test
Diffstat (limited to 'test')
-rw-r--r-- | test/SConsignFile/use-dbm.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/SConsignFile/use-dbm.py b/test/SConsignFile/use-dbm.py index d6c596f..5100916 100644 --- a/test/SConsignFile/use-dbm.py +++ b/test/SConsignFile/use-dbm.py @@ -81,7 +81,7 @@ test.run() # can use different file extensions on different implementations. test.fail_test(os.path.exists('.sconsign') and 'dbm' not in dbm.whichdb('.sconsign'), - message=".sconsign existed an wasn't any type of dbm file") + message=".sconsign existed and wasn't any type of dbm file") test.must_not_exist(test.workpath('.sconsign.dblite')) test.must_not_exist(test.workpath('subdir', '.sconsign')) test.must_not_exist(test.workpath('subdir', '.sconsign.dblite')) @@ -94,7 +94,7 @@ test.must_match(['subdir', 'f4.out'], "subdir/f4.in\n") test.up_to_date(arguments='.') test.fail_test(os.path.exists('.sconsign') and 'dbm' not in dbm.whichdb('.sconsign'), - message=".sconsign existed an wasn't any type of dbm file") + message=".sconsign existed and wasn't any type of dbm file") test.must_not_exist(test.workpath('.sconsign.dblite')) test.must_not_exist(test.workpath('subdir', '.sconsign')) test.must_not_exist(test.workpath('subdir', '.sconsign.dblite')) |