Cleanup previous PR

This commit is contained in:
Kovid Goyal 2026-03-16 17:38:14 +05:30
parent d97850274f
commit 83160c10c4
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C
2 changed files with 11 additions and 10 deletions

View file

@ -66,6 +66,7 @@ class TestDataTypes(BaseTest):
def c(spec, r=0, g=0, b=0, a=0):
c = to_color(spec)
self.ae(Color(r, g, b, a), c, spec)
self.ae(Color(r, green=g, alpha=a, blue=b), c, spec)
c('#eee # comment', 0xee, 0xee, 0xee)
c('#234567', 0x23, 0x45, 0x67)