File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ TEST_CASE("pack unpack blocks") {
8181}
8282
8383TEST_CASE (" pack bits unpack blocks" ) {
84- uint64_t value = 0xaa55aa55aa55aa55ULL ; // arbitrary starting value
84+ uint64_t value = 0 ; // arbitrary starting value
8585 for (int m = 0 ; m < 10000 ; ++m) {
8686 for (uint8_t bits = 1 ; bits <= 63 ; ++bits) {
8787 const uint64_t mask = (1ULL << bits) - 1 ;
@@ -106,7 +106,7 @@ TEST_CASE("pack bits unpack blocks") {
106106}
107107
108108TEST_CASE (" pack blocks unpack bits" ) {
109- uint64_t value = 0xaa55aa55aa55aa55ULL ; // arbitrary starting value
109+ uint64_t value = 111 ; // arbitrary starting value
110110 for (int m = 0 ; m < 10000 ; ++m) {
111111 for (uint8_t bits = 1 ; bits <= 63 ; ++bits) {
112112 const uint64_t mask = (1ULL << bits) - 1 ;
You can’t perform that action at this time.
0 commit comments