private function assertCommandCompletion($expect, $input, $commands)
 {
     $result = ArcanistConfiguration::correctCommandSpelling($input, $commands, 2);
     sort($result);
     sort($expect);
     $commands = implode(', ', $commands);
     $this->assertEqual($expect, $result, "Correction of {$input} against: {$commands}");
 }