Skip to content

Commit

Permalink
Fix incorrect req num
Browse files Browse the repository at this point in the history
Signed-off-by: Kim, Vinnam <vinnam.kim@intel.com>
  • Loading branch information
vinnamkim committed Jan 15, 2024
1 parent bf9e6b7 commit e0d266b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/integration/cli/test_yolo_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class YoloIntegrationScenariosTest:
def fxt_yolo_dir(self, request) -> str:
return get_test_asset_path("yolo_dataset", request.param)

@mark_requirement(Requirements.DATUM_BUG_1204)
@mark_requirement(Requirements.DATUM_BUG_1214)
def test_can_import_nested_datasets_in_project(self, fxt_yolo_dir, test_dir, helper_tc):
run(helper_tc, "project", "create", "-o", test_dir)

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/operations/test_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ def test_stats_with_empty_dataset(self):
actual = compute_ann_statistics(dataset)
assert actual == expected

@mark_requirement(Requirements.DATUM_BUG_1204)
@mark_requirement(Requirements.DATUM_BUG_1214)
def test_stats_with_invalid_label(self):
label_names = ["label_%s" % i for i in range(3)]
dataset = Dataset.from_iterable(
Expand Down

0 comments on commit e0d266b

Please sign in to comment.