Skip to content

Commit 7a587a4

Browse files
authored
Merge pull request #673 from superannotateai/fix_test_create_project
fix test_create_project
2 parents 6f580a0 + 0afccfc commit 7a587a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/integration/annotations/test_upload_annotations_from_folder_to_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_4_annotation_folder_upload_download(self):
7474
)
7575
assert len(uploaded) == 4
7676

77-
def test_upload_large_annotations(self):
77+
def test_upload_small_annotations_7_4_MB(self):
7878
sa.attach_items(
7979
self.PROJECT_NAME,
8080
[

tests/integration/projects/test_create_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_create_project_datetime(self):
9292
def test_create_project_with_wrong_type(self):
9393
with self.assertRaisesRegexp(
9494
AppException,
95-
"Available values are 'Vector', 'Pixel', 'Video', 'Document', 'Tiled', 'Other', 'PointCloud'.",
95+
"Available values are 'Vector', 'Pixel', 'Video', 'Document', 'Tiled', 'PointCloud', 'GenAI'.",
9696
):
9797
sa.create_project(self.PROJECT, "desc", "wrong_type")
9898

0 commit comments

Comments
 (0)