Fixed tests
This commit is contained in:
parent
79f818c0f9
commit
ab43d42869
|
@ -19,7 +19,7 @@ class MailmanTypeTest extends TestCase
|
||||||
Phake::when($mock)->setCredentials('https://example.com', 'user', 'secret')->thenReturn($mock);
|
Phake::when($mock)->setCredentials('https://example.com', 'user', 'secret')->thenReturn($mock);
|
||||||
Phake::when($mock)->check()->thenReturn(true);
|
Phake::when($mock)->check()->thenReturn(true);
|
||||||
});
|
});
|
||||||
$type = new MailmanType([
|
$type = app(MailmanType::class)->setParams([
|
||||||
'url' => 'https://example.com',
|
'url' => 'https://example.com',
|
||||||
'user' => 'user',
|
'user' => 'user',
|
||||||
'password' => 'secret',
|
'password' => 'secret',
|
||||||
|
@ -35,7 +35,7 @@ class MailmanTypeTest extends TestCase
|
||||||
Phake::when($mock)->setCredentials('https://example.com', 'user', 'secret')->thenReturn($mock);
|
Phake::when($mock)->setCredentials('https://example.com', 'user', 'secret')->thenReturn($mock);
|
||||||
Phake::when($mock)->check()->thenReturn(false);
|
Phake::when($mock)->check()->thenReturn(false);
|
||||||
});
|
});
|
||||||
$type = new MailmanType([
|
$type = app(MailmanType::class)->setParams([
|
||||||
'url' => 'https://example.com',
|
'url' => 'https://example.com',
|
||||||
'user' => 'user',
|
'user' => 'user',
|
||||||
'password' => 'secret',
|
'password' => 'secret',
|
||||||
|
|
Loading…
Reference in New Issue