Skip to content

Commit 755fd4a

Browse files
committed
Merge branch 'master' into 1.x
2 parents 48d1261 + 5a56bc0 commit 755fd4a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/SipwiseTests/CustomersTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public function tearDown()
2323
{
2424
unset($this->customers);
2525
}
26-
26+
2727
public function testInstance()
2828
{
2929
$this->assertInstanceOf(Customers::class, $this->customers);
3030
}
31-
31+
3232
public function testAllCustomer()
3333
{
3434
$this->customers->expects($this->any())->method('all')->willReturn(json_encode(['customer'=>'all']));

tests/SipwiseTests/SubscribersTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ public function tearDown()
2323
{
2424
unset($this->subscribers);
2525
}
26-
26+
2727
public function testInstance()
2828
{
2929
$this->assertInstanceOf(Subscribers::class, $this->subscribers);
3030
}
31-
31+
3232
public function testAllSubscriber()
3333
{
3434
$this->subscribers->expects($this->any())->method('all')->willReturn(json_encode(['subscriber'=>'all']));

0 commit comments

Comments
 (0)