aboutsummaryrefslogtreecommitdiff
path: root/tests/matrix/matrix_test.go
diff options
context:
space:
mode:
authorJakob Unterwurzacher2018-09-08 18:19:53 +0200
committerJakob Unterwurzacher2018-09-08 18:19:53 +0200
commit84d6fafeca8f1d7b1b631a56fc3dc47016c4ba31 (patch)
treec6fd0daf9f3e5837c4929372c6cfdd850ee4c834 /tests/matrix/matrix_test.go
parent930c37e03d5ff80e7cdc9f0ca2cd35d80a06d5c0 (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.go4
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)