1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Remove ambiguous test

This commit is contained in:
vrana 2012-07-18 18:31:34 -07:00
parent 2c9cdff848
commit 00160ab2a3
2 changed files with 2 additions and 2 deletions

View file

@ -157,7 +157,8 @@ final class DifferentialChangesetParser {
$offsets_old = $this->originalLeft->computeOffsets();
$offsets_new = $this->originalRight->computeOffsets();
// Highlight lines that were add on each side or removed on the other side.
// Highlight lines that were added on each side or removed on the other
// side.
$highlight_old = array();
$highlight_new = array();
$last = max(last_key($olds), last_key($news));

View file

@ -31,7 +31,6 @@ final class DifferentialChangesetParserTestCase extends ArcanistPhutilTestCase {
"+a\n x\n-c" => array(array(), array()),
"+aa\n b\n-c" => array(array(1), array(11)),
" b\n-c" => array(array(1), array()),
" x\n-c" => array(array(1), array()),
"+a\n b\n c" => array(array(), array(13)),
"+a\n x\n c" => array(array(), array(13)),
);