From fb4043ee76bede211aefcbd1a2a7d31dc38128d2 Mon Sep 17 00:00:00 2001 From: atavism Date: Tue, 4 Jun 2024 14:14:10 -0700 Subject: [PATCH] use correct common package in TestConfigure (#1089) --- internalsdk/ios/config_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internalsdk/ios/config_test.go b/internalsdk/ios/config_test.go index 742883f0e..ef04c6c8d 100644 --- a/internalsdk/ios/config_test.go +++ b/internalsdk/ios/config_test.go @@ -9,7 +9,7 @@ import ( "time" "github.com/fsnotify/fsnotify" - "github.com/getlantern/flashlight/v7/common" + "github.com/getlantern/lantern-client/internalsdk/common" "github.com/stretchr/testify/require" ) @@ -19,7 +19,7 @@ const ( ) func TestConfigure(t *testing.T) { - common.CompileTimeApplicationVersion = "8.0.0" + common.ApplicationVersion = "8.0.0" common.LibraryVersion = "8.0.0" tmpDir, err := os.MkdirTemp("", "config_test") require.NoError(t, err)