diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-11-28 22:01:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-28 22:01:00 +0200 |
commit | 746e70c0da73c3d20cb4456a8111355ad2202522 (patch) | |
tree | d9b6277bbabebd0d0f8fef8fb09a10f8f265b6b7 /run_unittests.py | |
parent | 8a1a866c68dc432c4576221fdaf377490dba4925 (diff) | |
parent | a52c22dc0678c4f2d91a20016277e9880935ca5c (diff) | |
download | meson-746e70c0da73c3d20cb4456a8111355ad2202522.zip meson-746e70c0da73c3d20cb4456a8111355ad2202522.tar.gz meson-746e70c0da73c3d20cb4456a8111355ad2202522.tar.bz2 |
Merge pull request #2512 from dcbaker/wip/config-tool-variables
Add method to get values from config tool based dependency
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py index be5ce47..8af872e 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -1661,7 +1661,7 @@ class FailureTests(BasePlatformTests): raise unittest.SkipTest('wx-config or wx-config-3.0 found') self.assertMesonRaises("dependency('wxwidgets')", self.dnf) self.assertMesonOutputs("dependency('wxwidgets', required : false)", - "nor wx-config found") + "No wx-config found;") def test_wx_dependency(self): if not shutil.which('wx-config-3.0') and not shutil.which('wx-config'): |