Skip to content

Commit 34b2066

Browse files
authored
Apply suggestions from code review - single-line-implicit-string-concatenation
single-line-implicit-string-concatenation
1 parent 148fa73 commit 34b2066

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/freetype_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -921,15 +921,15 @@ def test_freetype_Font_render_to_mono(self):
921921
self.assertEqual(
922922
surf.get_at(bottomleft),
923923
fill_color,
924-
"Position: {}. Depth: {}." " fg_color: {}.".format(
924+
"Position: {}. Depth: {}. fg_color: {}.".format(
925925
bottomleft, surf.get_bitsize(), fg_color
926926
),
927927
)
928928
bottomright = rrect.width - 1, rrect.height - 1
929929
self.assertEqual(
930930
surf.get_at(bottomright),
931931
r_fg_color,
932-
"Position: {}. Depth: {}." " fg_color: {}.".format(
932+
"Position: {}. Depth: {}. fg_color: {}.".format(
933933
bottomright, surf.get_bitsize(), fg_color
934934
),
935935
)

0 commit comments

Comments
 (0)