diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-02 17:19:34 +0300 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2024-06-04 22:45:41 +0300 |
| commit | 41a445c2284dcdd1c209fe618ea6b7ac1f117378 (patch) | |
| tree | 6a7125b16006e95a98bfad5cab3595261bdc9f18 /unittests/machinefiletests.py | |
| parent | 4cc2e2171a7a6452da6ee0ec336ecb0e77f19791 (diff) | |
| download | meson-41a445c2284dcdd1c209fe618ea6b7ac1f117378.tar.gz | |
Extract native file parser to machinefile source file.
Diffstat (limited to 'unittests/machinefiletests.py')
| -rw-r--r-- | unittests/machinefiletests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/machinefiletests.py b/unittests/machinefiletests.py index 3899ea942..5ff862cdc 100644 --- a/unittests/machinefiletests.py +++ b/unittests/machinefiletests.py @@ -59,7 +59,7 @@ class MachineFileStoreTests(TestCase): def test_loading(self): store = machinefile.MachineFileStore([cross_dir / 'ubuntu-armhf.txt'], [], str(cross_dir)) - self.assertTrue(True) + self.assertIsNotNone(store) class NativeFileTests(BasePlatformTests): |
