Skip to content
Snippets Groups Projects
Commit f7f32bc9 authored by durin42's avatar durin42
Browse files

tests: cope with change in git merge output format

parent af0e70e5
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@
commit -m 'add gamma'
# clean merge
git merge beta | sed "s/the '//;s/' strategy//" | sed 's/^Merge.*recursive.*$/Merge successful/' | sed 's/files/file/;s/insertions/insertion/;s/, 0 deletions.*//'
git merge beta | sed "s/the '//;s/' strategy//" | sed 's/^Merge.*recursive.*$/Merge successful/' | sed 's/files/file/;s/insertions/insertion/;s/, 0 deletions.*//' | sed 's/| +/| /'
cd ..
mkdir gitrepo2
......
......@@ -3,7 +3,7 @@
Switched to a new branch "beta"
Switched to branch "master"
Merge successful
beta | 1 +
beta | 1 +
1 file changed, 1 insertion(+)
create mode 100644 beta
Initialized empty Git repository in gitrepo2/
......
......@@ -53,7 +53,7 @@
git add delta
commit -m 'add delta'
git merge branch1 branch2 | sed "s/the '//;s/' strategy//" | sed 's/^Merge.*octopus.*$/Merge successful/;s/, 0 deletions.*//'
git merge branch1 branch2 | sed "s/the '//;s/' strategy//" | sed 's/^Merge.*octopus.*$/Merge successful/;s/, 0 deletions.*//' | sed 's/| +/| /'
cd ..
mkdir gitrepo2
......
......@@ -6,8 +6,8 @@
Trying simple merge with branch1
Trying simple merge with branch2
Merge successful
beta | 1 +
gamma | 1 +
beta | 1 +
gamma | 1 +
2 files changed, 2 insertions(+)
create mode 100644 beta
create mode 100644 gamma
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment