diff --git a/src/blenderbim/test/core/test_project.py b/src/blenderbim/test/core/test_project.py index 11f369d5df..b062bcec4e 100644 --- a/src/blenderbim/test/core/test_project.py +++ b/src/blenderbim/test/core/test_project.py @@ -56,6 +56,9 @@ class TestCreateProject: project.run_context_add_context( context_type="Model", context_identifier="Annotation", target_view="ELEVATION_VIEW", parent="model" ).should_be_called() + project.run_context_add_context( + context_type="Model", context_identifier="Annotation", target_view="MODEL_VIEW", parent="model" + ).should_be_called() project.run_context_add_context( context_type="Model", context_identifier="Profile", target_view="ELEVATION_VIEW", parent="model" ).should_be_called() @@ -119,6 +122,9 @@ class TestCreateProject: project.run_context_add_context( context_type="Model", context_identifier="Annotation", target_view="ELEVATION_VIEW", parent="model" ).should_be_called() + project.run_context_add_context( + context_type="Model", context_identifier="Annotation", target_view="MODEL_VIEW", parent="model" + ).should_be_called() project.run_context_add_context( context_type="Model", context_identifier="Profile", target_view="ELEVATION_VIEW", parent="model" ).should_be_called() @@ -191,6 +197,9 @@ class TestCreateProject: project.run_context_add_context( context_type="Model", context_identifier="Annotation", target_view="ELEVATION_VIEW", parent="model" ).should_be_called() + project.run_context_add_context( + context_type="Model", context_identifier="Annotation", target_view="MODEL_VIEW", parent="model" + ).should_be_called() project.run_context_add_context( context_type="Model", context_identifier="Profile", target_view="ELEVATION_VIEW", parent="model" ).should_be_called()