Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
tests: try to pass tests after -T option removed
Browse files Browse the repository at this point in the history
  • Loading branch information
podvarkov committed Feb 26, 2019
1 parent 84c3d53 commit 3e65c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shipit-deploy/src/tasks/deploy/publish.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ describe('deploy:publish task', () => {
await start(shipit, 'deploy:publish')
expect(shipit.currentPath).toBe('/remote/deploy/current')
expect(shipit.remote).toBeCalledWith(
'cd /remote/deploy && if [ -d current ] && [ ! -L current ]; then echo "ERR: could not make symlink"; else ln -nfs releases/20141704123138 current_tmp && mv -fT current_tmp current; fi',
'cd /remote/deploy && if [ -d current ] && [ ! -L current ]; then echo "ERR: could not make symlink"; else ln -nfs releases/20141704123138 current_tmp && mv -f current_tmp current; fi',
)
})
})

0 comments on commit 3e65c44

Please sign in to comment.