Skip to content

Commit 9a48c0b

Browse files
committed
Fix sms edit tests (#17)
1 parent 1dfaf07 commit 9a48c0b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Users/UserSpec.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,19 +79,19 @@ public function it_has_sms()
7979

8080
public function it_can_change_sms()
8181
{
82-
$this->setSmsNumber('12345678')->shouldBeCalled();
82+
$this->setSmsNumber('12345678');
8383
$this->getSmsNumber()->shouldBe('12345678');
8484
}
8585

8686
public function it_can_add_sms()
8787
{
88-
$this->setSmsNumber('9999999')->shouldBeCalled();
88+
$this->setSmsNumber('9999999');
8989
$this->getSmsNumber()->shouldBe('9999999');
9090
}
9191

9292
public function it_can_remove_sms()
9393
{
94-
$this->unsetSmsNumber()->shouldBeCalled();
94+
$this->unsetSmsNumber();
9595
$this->getSmsNumber()->shouldBe(null);
9696
}
9797

0 commit comments

Comments
 (0)