diff options
Diffstat (limited to 'tests/matrix')
| -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) | 
