Skip to content

Commit 6fc6caa

Browse files
committed
fixup formatting.
1 parent 7916fda commit 6fc6caa

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

python/example-pytest-selfie/tests/binary_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ def test_base64_mismatch():
5050
"""Test error handling for mismatched base64 data"""
5151
with pytest.raises(Exception) as exc_info:
5252
expect_selfie(b"test data").to_be_base64("AAAA")
53-
expect_selfie(
54-
safify(str(exc_info.value))
55-
).to_be("Snapshot mismatch, TODO: string comparison")
53+
expect_selfie(safify(str(exc_info.value))).to_be(
54+
"Snapshot mismatch, TODO: string comparison"
55+
)
56+
5657

5758
def safify(string: str) -> str:
5859
return string.split("\n")[0]
59-

0 commit comments

Comments
 (0)