Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit 46f1562

Browse files
committed
linting
1 parent 2c38e4e commit 46f1562

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/admin_overlay/test_oneof_message.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
INITIAL_VALUE = 123
3939
FINAL_VALUE = 456
4040

41+
4142
@pytest.fixture
4243
def default_msg():
4344
return my_oneof_message.MyOneofMessage()
@@ -66,7 +67,7 @@ def test_oneof_message_setattr_conflict(default_msg, foo_msg):
6667
with pytest.raises(ValueError):
6768
default_msg.foo = INITIAL_VALUE
6869
assert default_msg.bar == INITIAL_VALUE
69-
assert not default_msg.foo
70+
assert not default_msg.foo
7071

7172

7273
def test_oneof_message_setattr_oneof_same_oneof_field(default_msg, foo_msg):

0 commit comments

Comments
 (0)