From 45b9005ad935b20b56be6c404391ff2932875035 Mon Sep 17 00:00:00 2001
From: Earl Warren <contact@earl-warren.org>
Date: Mon, 2 Oct 2023 17:08:42 +0200
Subject: [PATCH] [v1.22] [SEMVER] store SemVer in ForgejoSemVer after a
 database upgrade

https://codeberg.org/forgejo/forgejo/pulls/1543
(cherry picked from commit 6146ef6263893cc367e8504de8e80f78231d2f49)
---
 models/forgejo/semver/main_test.go | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/models/forgejo/semver/main_test.go b/models/forgejo/semver/main_test.go
index 34c4f55395..fa56182627 100644
--- a/models/forgejo/semver/main_test.go
+++ b/models/forgejo/semver/main_test.go
@@ -3,7 +3,6 @@
 package semver
 
 import (
-	"path/filepath"
 	"testing"
 
 	"code.gitea.io/gitea/models/unittest"
@@ -14,7 +13,5 @@ import (
 )
 
 func TestMain(m *testing.M) {
-	unittest.MainTest(m, &unittest.TestOptions{
-		GiteaRootPath: filepath.Join("..", "..", ".."),
-	})
+	unittest.MainTest(m)
 }