Skip to content

Commit 3a36e50

Browse files
committed
Fix argument type
1 parent a87975f commit 3a36e50

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_fmtstr.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import sys
21
import unittest
32
from curtsies.formatstring import (
43
FmtStr,
@@ -372,7 +371,7 @@ def test_normal_chars(self) -> None:
372371

373372
def test_funny_chars(self) -> None:
374373
fmtstr("⁇", "blue")
375-
str(Chunk("⁇", {"fg": "blue"}))
374+
str(Chunk("⁇", {"fg": 34}))
376375
str(fmtstr("⁇", "blue"))
377376
self.assertTrue(True)
378377

0 commit comments

Comments
 (0)