fixed test

This commit is contained in:
RoccoSmit 2024-11-04 00:08:24 +11:00
parent d304add5d6
commit 4004d0e92b

View file

@ -5,7 +5,6 @@ import (
"testing"
"github.com/stretchr/testify/require"
"github.com/usememos/memos/server/version"
)
func TestGetCurrentSchemaVersion(t *testing.T) {
@ -14,5 +13,5 @@ func TestGetCurrentSchemaVersion(t *testing.T) {
currentSchemaVersion, err := ts.GetCurrentSchemaVersion()
require.NoError(t, err)
require.Equal(t, version.Version, currentSchemaVersion)
require.Equal(t, "0.23.0", currentSchemaVersion)
}