From 8db3fe1dcdaedabbd86703c7d2cbe4203bd54294 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Tue, 24 Nov 2020 12:22:23 -0600 Subject: [PATCH] Update test_dupes.py --- tests/test_dupes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_dupes.py b/tests/test_dupes.py index 7edf018d9..288f56c3b 100644 --- a/tests/test_dupes.py +++ b/tests/test_dupes.py @@ -36,6 +36,6 @@ def test_dupes(file_path): slug = definition.get('slug') if KNOWN_MODELS.get(slug, None) is not None: - pytest.fail(f"{file_path} is a duplicate device_type for {slug}") + pytest.fail(f"{file_path} is a duplicate device_type for {slug}", False) KNOWN_MODELS[slug] = definition.get('model')