diff options
author | Bjørn Erik Pedersen <[email protected]> | 2024-01-28 22:34:10 +0100 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2024-01-28 23:14:09 +0100 |
commit | a795acbcd8b18aa4af384d5c03f30740361c8fcf (patch) | |
tree | 0dbf7b000681a738b892c5235daf52c63cda88b9 /htesting | |
parent | 982d9513e71b3d48e20cfa38454a0e1215a8d963 (diff) | |
download | hugo-a795acbcd8b18aa4af384d5c03f30740361c8fcf.tar.gz hugo-a795acbcd8b18aa4af384d5c03f30740361c8fcf.zip |
all: Run gofumpt -l -w .
Diffstat (limited to 'htesting')
-rw-r--r-- | htesting/test_helpers_test.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/htesting/test_helpers_test.go b/htesting/test_helpers_test.go index 3e767ac9d..bec81cccf 100644 --- a/htesting/test_helpers_test.go +++ b/htesting/test_helpers_test.go @@ -20,12 +20,10 @@ import ( ) func TestExtractMinorVersionFromGoTag(t *testing.T) { - c := qt.New(t) c.Assert(extractMinorVersionFromGoTag("go1.17"), qt.Equals, 17) c.Assert(extractMinorVersionFromGoTag("go1.16.7"), qt.Equals, 16) c.Assert(extractMinorVersionFromGoTag("go1.17beta1"), qt.Equals, 17) c.Assert(extractMinorVersionFromGoTag("asdfadf"), qt.Equals, -1) - } |