summaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2023-07-08 20:57:24 +1000
committerJesse Duffield <jessedduffield@gmail.com>2023-07-09 20:57:18 +1000
commitfdee0e1497fddf618fd2a021377fdad4fbb2aa5f (patch)
treed68603074a4aa33953ef7b879ca337677fc7255c /pkg
parentbf7726d130716fdcdeea316e8d8284bb51412454 (diff)
Fix test
It's still skipped but it had an error
Diffstat (limited to 'pkg')
-rw-r--r--pkg/integration/tests/file/discard_changes.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/integration/tests/file/discard_changes.go b/pkg/integration/tests/file/discard_changes.go
index 435d64def..9d2791fbf 100644
--- a/pkg/integration/tests/file/discard_changes.go
+++ b/pkg/integration/tests/file/discard_changes.go
@@ -22,8 +22,8 @@ var DiscardChanges = NewIntegrationTest(NewIntegrationTestArgs{
shell.RunShellCommand(`echo bothmodded > both-modded.txt && git add both-modded.txt`)
shell.RunShellCommand(`echo haha > deleted-them.txt && git add deleted-them.txt`)
shell.RunShellCommand(`echo haha2 > deleted-us.txt && git add deleted-us.txt`)
- shell.RunShellCommand(`echo mod > modded.txt & git add modded.txt`)
- shell.RunShellCommand(`echo mod > modded-staged.txt & git add modded-staged.txt`)
+ shell.RunShellCommand(`echo mod > modded.txt && git add modded.txt`)
+ shell.RunShellCommand(`echo mod > modded-staged.txt && git add modded-staged.txt`)
shell.RunShellCommand(`echo del > deleted.txt && git add deleted.txt`)
shell.RunShellCommand(`echo del > deleted-staged.txt && git add deleted-staged.txt`)
shell.RunShellCommand(`echo change-delete > change-delete.txt && git add change-delete.txt`)