We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d226908 commit f86970dCopy full SHA for f86970d
test/test_editor_load.py
@@ -69,7 +69,7 @@ def test_editor_loads_jscm_data_match(self, colormap_file):
69
expected_colors = [
70
# TODO: Should we divide by 255 here instead of 256? The tests pass with a
71
# lower value for `err` if we do.
72
- [int(c[i : i + 2], 16) / 256 for i in range(0, len(c), 2)]
+ [int(c[i : i + 2], 16) / 255 for i in range(0, len(c), 2)]
73
for c in expected_colors_hex
74
]
75
0 commit comments