Aurel Bílý 6 anni fa
parent
commit
7ac27b7c74
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      tests/unit/src/unit/issues/Issue8212.hx

+ 1 - 1
tests/unit/src/unit/issues/Issue8212.hx

@@ -6,7 +6,7 @@ class Issue8212 extends unit.Test {
 	function test() {
 		var hex = "010a7f0ac2800adfbf0ae0a0800aed9fbf0aee80800aefbfbd0af09f9882f09f9884f09f98990ac8a70a";
 		var bytes = Bytes.ofHex(hex);
-		eq(hex.length, bytes.length);
+		eq(hex.length, bytes.length * 2);
 		eq(hex, bytes.toHex());
 	}
 }