Fix Android rendering by pinning Gio v0.8
This commit is contained in:
+12
-2
@@ -3282,7 +3282,12 @@ func TestUILocalLifecycleActionErrorsAreVisibleAndSpecific(t *testing.T) {
|
||||
t.Run("save without configured path", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
u := newUIWithSession("desktop", &session.Manager{})
|
||||
u := newUIWithSession("desktop", &session.Manager{}, statePaths{
|
||||
DefaultSaveAsPath: filepath.Join(t.TempDir(), "default-save-path.kdbx"),
|
||||
RecentVaultsPath: filepath.Join(t.TempDir(), "recent-vaults.json"),
|
||||
RecentRemotesPath: filepath.Join(t.TempDir(), "recent-remotes.json"),
|
||||
UIPreferencesPath: filepath.Join(t.TempDir(), "ui-preferences.json"),
|
||||
})
|
||||
u.masterPassword.SetText("correct horse battery staple")
|
||||
|
||||
u.runAction("create vault", u.createVaultAction)
|
||||
@@ -3299,7 +3304,12 @@ func TestUILocalLifecycleActionErrorsAreVisibleAndSpecific(t *testing.T) {
|
||||
t.Run("save-as uses default target path", func(t *testing.T) {
|
||||
t.Parallel()
|
||||
|
||||
u := newUIWithSession("desktop", &session.Manager{})
|
||||
u := newUIWithSession("desktop", &session.Manager{}, statePaths{
|
||||
DefaultSaveAsPath: filepath.Join(t.TempDir(), "default-save-path.kdbx"),
|
||||
RecentVaultsPath: filepath.Join(t.TempDir(), "recent-vaults.json"),
|
||||
RecentRemotesPath: filepath.Join(t.TempDir(), "recent-remotes.json"),
|
||||
UIPreferencesPath: filepath.Join(t.TempDir(), "ui-preferences.json"),
|
||||
})
|
||||
u.masterPassword.SetText("correct horse battery staple")
|
||||
u.defaultSaveAsPath = filepath.Join(t.TempDir(), "default-save-as.kdbx")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user