From 9ee6235cda563b6636199445813470d152a392cd Mon Sep 17 00:00:00 2001 From: Brad Buran Date: Fri, 14 Apr 2023 12:04:49 -0700 Subject: [PATCH] Update test to reflect try/except Enaml issue --- tests/core/test_importer.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/core/test_importer.py b/tests/core/test_importer.py index 6f9cec633..26fcfe9a8 100644 --- a/tests/core/test_importer.py +++ b/tests/core/test_importer.py @@ -42,6 +42,11 @@ def test_handling_wrong_locate_module_implementation(method): """ from enaml.widgets.api import * +try: + pass +except Exception as e: + pass + enamldef Main(Window): Field: fd: