Merge pull request #1095 from DeterminateSystems/tests/prefix-names-with-t

HydraTestContext: prefix names with t
This commit is contained in:
Graham Christensen 2022-01-10 10:01:45 -05:00 committed by GitHub
commit 0484f13a1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -189,7 +189,7 @@ sub write_file {
} }
sub rand_chars { sub rand_chars {
return sprintf("%08X", rand(0xFFFFFFFF)); return sprintf("t%08X", rand(0xFFFFFFFF));
} }
1; 1;