Skip to content

Commit bf84bf1

Browse files
committed
Fix typo in color type tests
1 parent 00dfe55 commit bf84bf1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/color/test_color_type.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ def test_color_rgb_property():
197197

198198
# Spot check unique colors
199199
assert colors.COBALT.rgb == (0, 71, 171)
200-
assert Color(1,3,5,7) == (1, 3, 5)
200+
assert Color(1,3,5,7).rgb == (1, 3, 5)
201201

202202

203203
def test_deepcopy_color_values():

0 commit comments

Comments
 (0)