Skip to content

Commit cba5382

Browse files
committed
fixup! update test
Signed-off-by: Tomas Pilar <[email protected]>
1 parent 9802cb0 commit cba5382

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

tests/utils/test_proto_utils.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,7 @@ def test_enum_conversions(self):
170170
)
171171

172172
for state in types.TaskState:
173-
if state not in (
174-
types.TaskState.unknown,
175-
types.TaskState.rejected,
176-
types.TaskState.auth_required,
177-
):
173+
if state not in (types.TaskState.unknown, types.TaskState.rejected):
178174
proto_state = proto_utils.ToProto.task_state(state)
179175
assert proto_utils.FromProto.task_state(proto_state) == state
180176

0 commit comments

Comments
 (0)