diff options
author | William Deegan <bill@baddogconsulting.com> | 2019-04-22 02:12:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-22 02:12:21 (GMT) |
commit | d65c36a7d1a54176eb7315eb07b495153d05c048 (patch) | |
tree | 93c3643ec545e7449bad83bd820eba9f56151108 /testing | |
parent | 5728acaff9b6bc9466bc6f1e5ae8280964443ce1 (diff) | |
parent | 2b3a655bd778980cc09d268a7088e8f6afa7b50e (diff) | |
download | SCons-d65c36a7d1a54176eb7315eb07b495153d05c048.zip SCons-d65c36a7d1a54176eb7315eb07b495153d05c048.tar.gz SCons-d65c36a7d1a54176eb7315eb07b495153d05c048.tar.bz2 |
Merge branch 'master' into java-vers
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestCmdTests.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/framework/TestCmdTests.py b/testing/framework/TestCmdTests.py index 0b6aab9..d6922d9 100644 --- a/testing/framework/TestCmdTests.py +++ b/testing/framework/TestCmdTests.py @@ -1634,7 +1634,7 @@ class rmdir_TestCase(TestCmdTestCase): except EnvironmentError: pass else: - raise Exception("did not catch expected EnvironmentError") + raise Exception("did not catch expected SConsEnvironmentError") test.subdir(['sub'], ['sub', 'dir'], @@ -1649,7 +1649,7 @@ class rmdir_TestCase(TestCmdTestCase): except EnvironmentError: pass else: - raise Exception("did not catch expected EnvironmentError") + raise Exception("did not catch expected SConsEnvironmentError") assert os.path.isdir(s_d_o), "%s is gone?" % s_d_o @@ -1658,7 +1658,7 @@ class rmdir_TestCase(TestCmdTestCase): except EnvironmentError: pass else: - raise Exception("did not catch expected EnvironmentError") + raise Exception("did not catch expected SConsEnvironmentError") assert os.path.isdir(s_d_o), "%s is gone?" % s_d_o |