summaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-08-23 22:39:40 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-09-24 12:14:13 -0700
commitbb3fe3c4519305158e1dc8a26a216473b92b3beb (patch)
tree0a84701d364f47d774c772db3f6ccfe9c7c9ccc2 /run_unittests.py
parent4cfddd1fe62f8dcd39e37b80ece88e30cc440687 (diff)
downloadmeson-bb3fe3c4519305158e1dc8a26a216473b92b3beb.tar.gz
compilers/mixins/clike: fix mypy issues
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
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):