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 de18630 commit dba31f5Copy full SHA for dba31f5
1 file changed
tool/conformance.dart
@@ -41,7 +41,8 @@ void main(List<String> args) {
41
42
check(_toHex(cobsEncode(decoded)) == cobsHex, 'cobs encode $decodedHex');
43
check(_toHex(cobsrEncode(decoded)) == cobsrHex, 'cobsr encode $decodedHex');
44
- check(_toHex(cobsDecode(_hex(cobsHex))) == decodedHex, 'cobs decode $cobsHex');
+ check(_toHex(cobsDecode(_hex(cobsHex))) == decodedHex,
45
+ 'cobs decode $cobsHex');
46
check(_toHex(cobsrDecode(_hex(cobsrHex))) == decodedHex,
47
'cobsr decode $cobsrHex');
48
checked++;
0 commit comments