diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-11 06:11:30 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-06-19 04:20:45 +0800 |
commit | 6ff956394a26fe13c774797284220b8231ebf809 (patch) | |
tree | f5d739218bf55a62505cb809e076613c9bb5ebac /tests/vm_test_util.go | |
parent | ac0637c41332de1f49fb0955f4fbe0fb908a77d5 (diff) | |
download | dexon-6ff956394a26fe13c774797284220b8231ebf809.tar dexon-6ff956394a26fe13c774797284220b8231ebf809.tar.gz dexon-6ff956394a26fe13c774797284220b8231ebf809.tar.bz2 dexon-6ff956394a26fe13c774797284220b8231ebf809.tar.lz dexon-6ff956394a26fe13c774797284220b8231ebf809.tar.xz dexon-6ff956394a26fe13c774797284220b8231ebf809.tar.zst dexon-6ff956394a26fe13c774797284220b8231ebf809.zip |
DRY file loading
Diffstat (limited to 'tests/vm_test_util.go')
-rw-r--r-- | tests/vm_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm_test_util.go b/tests/vm_test_util.go index 55036ed82..28e0c3f40 100644 --- a/tests/vm_test_util.go +++ b/tests/vm_test_util.go @@ -19,7 +19,7 @@ func RunVmTest(p string) error { } tests := make(map[string]VmTest) - err := CreateFileTests(p, &tests) + err := readTestFile(p, &tests) if err != nil { return err } |