Skip to content

Commit 5237ce0

Browse files
committed
fix: naming in integration test
1 parent 550df7a commit 5237ce0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

mapswipe_workers/tests/integration/test_create_tutorial.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
class TestCreateTileClassificationProject(unittest.TestCase):
1111
def setUp(self):
1212
self.tutorial_id = set_up.create_test_tutorial_draft(
13-
"street",
14-
"street",
13+
"tile_classification",
14+
"tile_classification",
1515
"test_tile_classification_tutorial",
1616
)
1717

1818
self.project_id = set_up.create_test_project_draft(
19-
"street",
20-
"street",
19+
"tile_classification",
20+
"tile_classification",
2121
"test_tile_classification_tutorial",
2222
tutorial_id=self.tutorial_id,
2323
)
@@ -26,7 +26,7 @@ def setUp(self):
2626
def tearDown(self):
2727
tear_down.delete_test_data(self.project_id, self.tutorial_id)
2828

29-
def test_create_tile_classification_project(self):
29+
def test_create_tile_classification_project_and_tutorial(self):
3030
runner = CliRunner()
3131
runner.invoke(mapswipe_workers.run_create_tutorials, catch_exceptions=False)
3232
runner.invoke(mapswipe_workers.run_create_projects, catch_exceptions=False)

0 commit comments

Comments
 (0)