run_unittests: remove double definition of the same test case

In commit 591e6e94b9 we somehow ended up
with an identical extra copy.
This commit is contained in:
Eli Schwartz 2021-02-05 15:23:58 -05:00 committed by Dylan Baker
parent 0d0c6ede9b
commit c3d516421f
1 changed files with 0 additions and 16 deletions

View File

@ -8632,22 +8632,6 @@ class NativeFileTests(BasePlatformTests):
else:
self.fail('Did not find bindir in build options?')
def test_builtin_options_paths_legacy(self):
testcase = os.path.join(self.common_test_dir, '1 trivial')
config = self.helper_create_native_file({
'built-in options': {'default_library': 'static'},
'paths': {'bindir': 'bar'},
})
self.init(testcase, extra_args=['--native-file', config])
configuration = self.introspect('--buildoptions')
for each in configuration:
if each['name'] == 'bindir':
self.assertEqual(each['value'], 'bar')
break
else:
self.fail('Did not find bindir in build options?')
class CrossFileTests(BasePlatformTests):