Page MenuHomePhabricator

D11410.id27422.diff
No OneTemporary

D11410.id27422.diff

diff --git a/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestCase.php b/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestCase.php
--- a/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestCase.php
+++ b/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestCase.php
@@ -45,7 +45,9 @@
$dao = new LiskIsolationTestDAO();
try {
- $dao->establishLiveConnection('r');
+ $method = new ReflectionMethod($dao, 'establishLiveConnection');
+ $method->setAccessible(true);
+ $method->invoke($dao, 'r');
$this->assertFailure(
'LiskIsolationTestDAO did not throw an exception when instructed to '.
diff --git a/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestDAO.php b/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestDAO.php
--- a/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestDAO.php
+++ b/src/infrastructure/storage/lisk/__tests__/LiskIsolationTestDAO.php
@@ -15,13 +15,13 @@
return PhabricatorPHID::generateNewPHID('TISO');
}
- public function establishLiveConnection($mode) {
+ protected function establishLiveConnection($mode) {
throw new LiskIsolationTestDAOException(
'Isolation failure! DAO is attempting to connect to an external '.
'resource!');
}
- public function getConnectionNamespace() {
+ protected function getConnectionNamespace() {
return 'test';
}

File Metadata

Mime Type
text/plain
Expires
Sun, Mar 23, 11:35 AM (1 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7390694
Default Alt Text
D11410.id27422.diff (1 KB)

Event Timeline