Skip to content

Commit afeccc9

Browse files
committed
fix: restore the debug information of the master branch
1 parent 1be3fa4 commit afeccc9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

node-graph/libraries/no-std-types/src/color/discrete_srgb.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,11 @@ mod tests {
162162
#[test]
163163
fn test_float_to_srgb_u8() {
164164
for u in 0..=u8::MAX {
165+
// let a = srgb_u8_to_float(u);
166+
// let b = srgb_u8_to_float_ref(u);
167+
// if a != b {
168+
// panic!("Mismatch at u={}: {} != {}", u, a, b);
169+
// }
165170
assert!(srgb_u8_to_float(u) == srgb_u8_to_float_ref(u));
166171
}
167172
}

0 commit comments

Comments
 (0)