fix: power bits in test now LE

This commit is contained in:
Nicholas Ward 2021-07-27 13:09:28 -07:00
parent b5418bffb3
commit 21ec75335a

View File

@ -244,6 +244,7 @@ mod tests {
power_bits.push(cur_power % 2);
cur_power /= 2;
}
power_bits = power_bits.iter().cloned().rev().collect::<Vec<_>>();
let num_power_bits = power_bits.len();