We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2e55e6c + 9307340 commit 5fe99ffCopy full SHA for 5fe99ff
tests/test_add_target.py
@@ -111,22 +111,6 @@ class TestActiveFlag:
111
Tests for the ``active_flag`` parameter to ``add_target``.
112
"""
113
114
- def test_default(
115
- self,
116
- client: VWS,
117
- high_quality_image: io.BytesIO,
118
- ) -> None:
119
- """
120
- By default, the active flag is set to ``True``.
121
122
- target_id = client.add_target(
123
- name='x',
124
- width=1,
125
- image=high_quality_image,
126
- )
127
- target_record = client.get_target_record(target_id=target_id)
128
- assert target_record['active_flag'] is True
129
-
130
@pytest.mark.parametrize('active_flag', [True, False])
131
def test_given(
132
self,
0 commit comments