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

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;