1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

ci: run vfmt over sha256_test.v

This commit is contained in:
Delyan Angelov 2021-05-08 17:38:05 +03:00
parent 3a1cae0c4f
commit d8d6e9b901
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -12,6 +12,5 @@ fn test_crypto_sha256_writer() {
digest.write('This is a'.bytes()) or { assert false }
digest.write(' sha256 checksum.'.bytes()) or { assert false }
sum := digest.sum([])
assert sum.hex() ==
'dc7163299659529eae29683eb1ffec50d6c8fc7275ecb10c145fde0e125b8727'
assert sum.hex() == 'dc7163299659529eae29683eb1ffec50d6c8fc7275ecb10c145fde0e125b8727'
}