diff options
author | 2009-08-12 15:24:50 -0700 | |
---|---|---|
committer | 2009-08-12 15:25:18 -0700 | |
commit | e1a5b9d3e708d6be1a4c5220dc492da9f2694411 (patch) | |
tree | e329e5ad0008c9a6a44a9debeaa2b732b4034f2e /test.sh | |
parent | todo: idea for a 'git subtree grafts' command (diff) | |
download | tgif-e1a5b9d3e708d6be1a4c5220dc492da9f2694411.tar.xz |
fixed order of assertion in tests
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -160,7 +160,7 @@ check_equal "$mainfiles" "$chkm $chkms_sub $chks_sub" # changes that were split into their own history. And 'subdir/sub??' never # change, since they were *only* changed in the subtree branch. allchanges=$(git log --name-only --pretty=format:'' | sort | fixnl) -check_equal "$allchanges" "$chkm $chkms $chks $chkms_sub" +check_equal "$allchanges" "$chkms $chkm $chks $chkms_sub" # make sure the --rejoin commits never make it into subproj check_equal "$(git log --pretty=format:'%s' HEAD^2 | grep -i split)" "" |