From 30babeea3cd2544d0b6a588d3e9cf11b2128b6e1 Mon Sep 17 00:00:00 2001 From: Pepe Marquez Date: Fri, 9 Aug 2024 12:51:16 +0200 Subject: [PATCH] Fix app test --- tests/apps/test_app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/apps/test_app.py b/tests/apps/test_app.py index 8a7d849..4966794 100644 --- a/tests/apps/test_app.py +++ b/tests/apps/test_app.py @@ -1,5 +1,5 @@ def test_importing_app(): # this will raise an exception if pydantic model validation fails for th app - from nomad_polymerization_reactions.apps import myapp + from nomad_polymerization_reactions.apps import polymerization_reaction_app - assert myapp.app.label == 'MyApp' + assert polymerization_reaction_app.app.label == 'Polymerization Reaction'