Skip to content

Commit d7d6251

Browse files
authored
chore(consume): fix consume rlp for python 3.11 (#2162)
1 parent 8f8ac0c commit d7d6251

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_plugins/consume/simulators/simulator_logic/test_via_rlp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def test_via_rlp(
6363
)
6464
raise AssertionError(
6565
"blockHash mismatch in last block - field mismatches:"
66-
f"\n{'\n'.join(mismatches)}"
66+
"\n" + "\n".join(mismatches)
6767
)
6868
except Exception as e:
6969
raise AssertionError(

0 commit comments

Comments
 (0)