Skip to content

Commit 70974d3

Browse files
committed
Made test product token completely uppercase
1 parent 0a219af commit 70974d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/CmsmsChannelTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function setUp()
1818
$this->notification = new TestNotification;
1919
$this->notifiable = new TestNotifiable;
2020
$this->guzzle = Mockery::mock(new Client());
21-
$this->client = Mockery::mock(new CmsmsClient($this->guzzle, '00000FFF-0000-F0F0-F0f0-FFFFFFFFFFFF'));
21+
$this->client = Mockery::mock(new CmsmsClient($this->guzzle, '00000FFF-0000-F0F0-F0F0-FFFFFFFFFFFF'));
2222
$this->channel = new CmsmsChannel($this->client);
2323
}
2424

tests/CmsmsClientTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function setUp()
1818
parent::setUp();
1919
$this->app['config']['services.cmsms.originator'] = 'My App';
2020
$this->guzzle = Mockery::mock(new Client());
21-
$this->client = Mockery::mock(new CmsmsClient($this->guzzle, '00000FFF-0000-F0F0-F0f0-FFFFFFFFFFFF'));
21+
$this->client = Mockery::mock(new CmsmsClient($this->guzzle, '00000FFF-0000-F0F0-F0F0-FFFFFFFFFFFF'));
2222
$this->message = (new CmsmsMessage('Message content'))->originator('APPNAME');
2323
}
2424

0 commit comments

Comments
 (0)