Skip to content

Commit 49e8e6b

Browse files
remove unecessary check
1 parent 305ac06 commit 49e8e6b

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

tests/integration/release/test_release.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,11 @@ def test_unnoised_id_cols(dataset_name: str, request: FixtureRequest) -> None:
6161
original = initialize_dataset_with_sample(dataset_name)
6262
noised_data = request.getfixturevalue("noised_data")
6363
check_noised, check_original, _ = _get_common_datasets(original, noised_data)
64-
with check:
65-
assert (
66-
(
67-
check_original.reset_index()[unnoised_id_cols]
68-
== check_noised.reset_index()[unnoised_id_cols]
69-
)
70-
.all()
71-
.all()
64+
assert (
65+
(
66+
check_original.reset_index()[unnoised_id_cols]
67+
== check_noised.reset_index()[unnoised_id_cols]
7268
)
69+
.all()
70+
.all()
71+
)

0 commit comments

Comments
 (0)