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

phtize some strings in ArcanistPhutilTestCaseTestCase

Summary: Self-explanatory.

Test Plan: Eyeball it.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11671
This commit is contained in:
Joshua Spence 2015-02-05 07:22:00 +11:00
parent 992d939e3a
commit 59640f7eae

View file

@ -6,11 +6,11 @@
final class ArcanistPhutilTestCaseTestCase extends ArcanistPhutilTestCase {
public function testFail() {
$this->assertFailure('This test is expected to fail.');
$this->assertFailure(pht('This test is expected to fail.'));
}
public function testSkip() {
$this->assertSkipped('This test is expected to skip.');
$this->assertSkipped(pht('This test is expected to skip.'));
}
}