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:
parent
2c9cdff848
commit
00160ab2a3
2 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
|
|
@ -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)),
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue