diff options
author | Jakob Unterwurzacher | 2020-05-09 15:42:57 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2020-05-09 15:42:57 +0200 |
commit | c19baa10f8e8365ed9e3212a003a6b8f31f0320a (patch) | |
tree | db21d3e3ce534742e03c3235614ae5ee8b0a7251 /tests/matrix/matrix_test.go | |
parent | 5dbf376860d51bac599064ad746ac94ade27c277 (diff) |
tests: use t.Name()
We did not use t.Name() as it was not available
before Go 1.8. Now the oldest Go version we support is
Go 1.11, so we can use it.
Diffstat (limited to 'tests/matrix/matrix_test.go')
-rw-r--r-- | tests/matrix/matrix_test.go | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/matrix/matrix_test.go b/tests/matrix/matrix_test.go index 2215ff6..6472aaa 100644 --- a/tests/matrix/matrix_test.go +++ b/tests/matrix/matrix_test.go @@ -822,9 +822,7 @@ func TestMagicNames(t *testing.T) { // Test that chmod works correctly func TestChmod(t *testing.T) { - // Note: t.Name() is not available before in Go 1.8 - tName := "TestChmod" - path := test_helpers.DefaultPlainDir + "/" + tName + path := test_helpers.DefaultPlainDir + "/" + t.Name() file, err := os.Create(path) if err != nil { t.Fatal(err) @@ -854,9 +852,7 @@ func TestChmod(t *testing.T) { // Test that access(2) works correctly func TestAccess(t *testing.T) { - // Note: t.Name() is not available before in Go 1.8 - tName := "TestAccess" - path := test_helpers.DefaultPlainDir + "/" + tName + path := test_helpers.DefaultPlainDir + "/" + t.Name() file, err := os.Create(path) if err != nil { t.Fatal(err) |