Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_4_annotation_folder_upload_download(self):
)
assert len(uploaded) == 4

def test_upload_large_annotations(self):
def test_upload_small_annotations_7_4_MB(self):
sa.attach_items(
self.PROJECT_NAME,
[
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/projects/test_create_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def test_create_project_datetime(self):
def test_create_project_with_wrong_type(self):
with self.assertRaisesRegexp(
AppException,
"Available values are 'Vector', 'Pixel', 'Video', 'Document', 'Tiled', 'Other', 'PointCloud'.",
"Available values are 'Vector', 'Pixel', 'Video', 'Document', 'Tiled', 'PointCloud', 'GenAI'.",
):
sa.create_project(self.PROJECT, "desc", "wrong_type")

Expand Down