diff options
author | Sean McGivern <sean@gitlab.com> | 2016-07-11 10:58:01 +0100 |
---|---|---|
committer | Sean McGivern <sean@gitlab.com> | 2016-07-11 12:02:13 +0100 |
commit | 93ab68607922e0bd0e22c40528a9d58fc50f50cd (patch) | |
tree | 559b57a767484dee616c3e4d4e8aa9d553b8aeed /spec/support | |
parent | 79a47582e8df780e4072c90c1addc0e06161f608 (diff) | |
download | gitlab-ce-single-file-diffs.tar.gz |
Fix feature specs on CIsingle-file-diffs
MySQL's text column isn't big enough for the diffs in the
expand-collapse-diffs branch.
Diffstat (limited to 'spec/support')
-rw-r--r-- | spec/support/test_env.rb | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/spec/support/test_env.rb b/spec/support/test_env.rb index 311610c9911..bb6c84262f6 100644 --- a/spec/support/test_env.rb +++ b/spec/support/test_env.rb @@ -5,21 +5,20 @@ module TestEnv # When developing the seed repository, comment out the branch you will modify. BRANCH_SHA = { - 'empty-branch' => '7efb185', - 'flatten-dir' => 'e56497b', - 'feature' => '0b4bc9a', - 'feature_conflict' => 'bb5206f', - 'fix' => '48f0be4', - 'improve/awesome' => '5937ac0', - 'markdown' => '0ed8c6c', - 'lfs' => 'be93687', - 'master' => '5937ac0', - "'test'" => 'e56497b', - 'orphaned-branch' => '45127a9', - 'binary-encoding' => '7b1cf43', - 'gitattributes' => '5a62481', - 'expand-collapse-diffs-start' => '65b04e4', - 'expand-collapse-diffs' => '865e6d5' + 'empty-branch' => '7efb185', + 'flatten-dir' => 'e56497b', + 'feature' => '0b4bc9a', + 'feature_conflict' => 'bb5206f', + 'fix' => '48f0be4', + 'improve/awesome' => '5937ac0', + 'markdown' => '0ed8c6c', + 'lfs' => 'be93687', + 'master' => '5937ac0', + "'test'" => 'e56497b', + 'orphaned-branch' => '45127a9', + 'binary-encoding' => '7b1cf43', + 'gitattributes' => '5a62481', + 'expand-collapse-diffs' => '4842455' } # gitlab-test-fork is a fork of gitlab-fork, but we don't necessarily |