diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2020-08-23 22:39:40 -0700 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2020-09-24 12:14:13 -0700 |
| commit | bb3fe3c4519305158e1dc8a26a216473b92b3beb (patch) | |
| tree | 0a84701d364f47d774c772db3f6ccfe9c7c9ccc2 /run_unittests.py | |
| parent | 4cfddd1fe62f8dcd39e37b80ece88e30cc440687 (diff) | |
| download | meson-bb3fe3c4519305158e1dc8a26a216473b92b3beb.tar.gz | |
compilers/mixins/clike: fix mypy issues
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 d8a2a7b0b..db61ca6b1 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -792,7 +792,7 @@ class InternalTests(unittest.TestCase): f.write('') with open(os.path.join(tmpdir, 'libfoo.so.70.0.so.1'), 'w') as f: f.write('') - found = cc.find_library_real('foo', env, [tmpdir], '', LibType.PREFER_SHARED) + found = cc._find_library_real('foo', env, [tmpdir], '', LibType.PREFER_SHARED) self.assertEqual(os.path.basename(found[0]), 'libfoo.so.54.0') def test_find_library_patterns(self): |
