| Index: telemetry/telemetry/internal/util/path_unittest.py
|
| diff --git a/telemetry/telemetry/internal/util/path_unittest.py b/telemetry/telemetry/internal/util/path_unittest.py
|
| index 17f87e4709ea804729c7a4be9a011061ebf69c5d..e9a0ee026328496a5888ced36bfa2356cc9e0ed1 100644
|
| --- a/telemetry/telemetry/internal/util/path_unittest.py
|
| +++ b/telemetry/telemetry/internal/util/path_unittest.py
|
| @@ -19,3 +19,8 @@ class PathTest(unittest.TestCase):
|
| def testFindInstalledWindowsApplication(self):
|
| self.assertTrue(path.FindInstalledWindowsApplication(os.path.join(
|
| 'Internet Explorer', 'iexplore.exe')))
|
| +
|
| + @decorators.Enabled('win')
|
| + def testFindInstalledWindowsApplicationWithWildcards(self):
|
| + self.assertTrue(path.FindInstalledWindowsApplication(os.path.join(
|
| + '*', 'iexplore.exe')))
|
|
|