diff options
author | Jakob Unterwurzacher | 2018-09-08 18:19:53 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-09-08 18:19:53 +0200 |
commit | 84d6fafeca8f1d7b1b631a56fc3dc47016c4ba31 (patch) | |
tree | c6fd0daf9f3e5837c4929372c6cfdd850ee4c834 /tests/matrix/matrix_test.go | |
parent | 930c37e03d5ff80e7cdc9f0ca2cd35d80a06d5c0 (diff) |
tests: restore Go 1.7 compatibility
Go 1.7 does not have t.Name() yet.
Diffstat (limited to 'tests/matrix/matrix_test.go')
-rw-r--r-- | tests/matrix/matrix_test.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 19a6245..4938ba9 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -886,7 +886,9 @@ func TestMagicNames(t *testing.T) { // Test that chmod works correctly func TestChmod(t *testing.T) { - path := test_helpers.DefaultPlainDir + "/" + t.Name() + // Note: t.Name() is not available before in Go 1.8 + tName := "TestChmod" + path := test_helpers.DefaultPlainDir + "/" + tName file, err := os.Create(path) if err != nil { t.Fatal(err) |