Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15466755
D11410.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D11410.diff
View Options
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
Details
Attached
Mime Type
text/plain
Expires
Fri, Apr 4, 9:21 AM (1 d, 3 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7390694
Default Alt Text
D11410.diff (1 KB)
Attached To
Mode
D11410: Fix visibility of some `LiskDAO` methods
Attached
Detach File
Event Timeline
Log In to Comment