diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-07 01:02:03 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-07 22:35:56 +0100 |
commit | 5c139032b80cda76a111744b745c04dacc17df42 (patch) | |
tree | 90a59d79657a4e4373cb2c2efd58a5a65cc434e6 /run_unittests.py | |
parent | 29dd57dcbf248e66ef5ed37c3f5a5cdead0e4817 (diff) | |
download | meson-5c139032b80cda76a111744b745c04dacc17df42.zip meson-5c139032b80cda76a111744b745c04dacc17df42.tar.gz meson-5c139032b80cda76a111744b745c04dacc17df42.tar.bz2 |
Deprecated --target-files API
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-x | run_unittests.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/run_unittests.py b/run_unittests.py index c7a5a7e..5f3181d 100755 --- a/run_unittests.py +++ b/run_unittests.py @@ -2565,7 +2565,6 @@ int main(int argc, char **argv) { for t in t_intro: id = t['id'] tf_intro = self.introspect(['--target-files', id]) - tf_intro = list(map(lambda x: os.path.relpath(x, testdir), tf_intro)) self.assertEqual(tf_intro, expected[id]) self.wipe() @@ -2580,7 +2579,6 @@ int main(int argc, char **argv) { for t in t_intro: id = t['id'] tf_intro = self.introspect(['--target-files', id]) - tf_intro = list(map(lambda x: os.path.relpath(x, testdir), tf_intro)) self.assertEqual(tf_intro, expected[id]) self.wipe() |