mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
test: exclude Pixiv for a particular test
This commit is contained in:
parent
bc773a49f8
commit
641e2eedf5
@ -67,7 +67,11 @@ class BridgeImplementationTest extends TestCase {
|
||||
foreach($this->obj::PARAMETERS as $context => $params) {
|
||||
if ($multiContexts) {
|
||||
$this->assertIsString($context, 'invalid context name');
|
||||
$this->assertNotEmpty($context, 'empty context name');
|
||||
|
||||
// Pixiv has a context that is the empty string, for BC.
|
||||
if (! ($this->obj instanceof PixivBridge)) {
|
||||
$this->assertNotEmpty($context, 'The context name cannot be empty');
|
||||
}
|
||||
}
|
||||
|
||||
if (empty($params)) {
|
||||
|
Loading…
Reference in New Issue
Block a user