summaryrefslogtreecommitdiffstats
path: root/pkg/integration/tests/sync/push_with_credential_prompt.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/integration/tests/sync/push_with_credential_prompt.go')
-rw-r--r--pkg/integration/tests/sync/push_with_credential_prompt.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/integration/tests/sync/push_with_credential_prompt.go b/pkg/integration/tests/sync/push_with_credential_prompt.go
index 79d7fcc1d..62be89bf4 100644
--- a/pkg/integration/tests/sync/push_with_credential_prompt.go
+++ b/pkg/integration/tests/sync/push_with_credential_prompt.go
@@ -26,7 +26,7 @@ var PushWithCredentialPrompt = NewIntegrationTest(NewIntegrationTestArgs{
shell.CopyHelpFile("pre-push", ".git/hooks/pre-push")
},
Run: func(t *TestDriver, keys config.KeybindingConfig) {
- t.Views().Status().Content(Contains("↑1 repo → master"))
+ t.Views().Status().Content(Equals("↑1 repo → master"))
t.Views().Files().
IsFocused().
@@ -50,7 +50,7 @@ var PushWithCredentialPrompt = NewIntegrationTest(NewIntegrationTestArgs{
Content(Contains("incorrect username/password")).
Confirm()
- t.Views().Status().Content(Contains("↑1 repo → master"))
+ t.Views().Status().Content(Equals("↑1 repo → master"))
// try again with correct password
t.Views().Files().
@@ -67,7 +67,7 @@ var PushWithCredentialPrompt = NewIntegrationTest(NewIntegrationTestArgs{
Type("password").
Confirm()
- t.Views().Status().Content(Contains("✓ repo → master"))
+ t.Views().Status().Content(Equals("✓ repo → master"))
assertSuccessfullyPushed(t)
},