Skip to content

Commit e37b4c8

Browse files
author
Steve Kirkland
committed
Corrections
1 parent f826c93 commit e37b4c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/ConfigurationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -302,15 +302,15 @@ public function testTheNotifyEndpointHasASensibleDefault()
302302
{
303303
$expected = 'https://notify.bugsnag.com';
304304

305-
$this->assertSame($expected, $this->config->getSessionEndpoint());
305+
$this->assertSame($expected, $this->config->getNotifyEndpoint());
306306
}
307307

308308
public function testTheNotifyEndpointForHubHasASensibleDefault()
309309
{
310310
$expected = 'https://notify.insighthub.smartbear.com';
311311
$this->config = new Configuration('00000123123123123');
312312

313-
$this->assertSame($expected, $this->config->getSessionEndpoint());
313+
$this->assertSame($expected, $this->config->getNotifyEndpoint());
314314
}
315315

316316
public function testTheSessionEndpointHasASensibleDefault()
@@ -332,15 +332,15 @@ public function testTheBuildEndpointHasASensibleDefault()
332332
{
333333
$expected = 'https://build.bugsnag.com';
334334

335-
$this->assertSame($expected, $this->config->getSessionEndpoint());
335+
$this->assertSame($expected, $this->config->getBuildEndpoint());
336336
}
337337

338338
public function testTheBuildEndpointForHubHasASensibleDefault()
339339
{
340340
$expected = 'https://build.insighthub.smartbear.com';
341341
$this->config = new Configuration('00000123123123123');
342342

343-
$this->assertSame($expected, $this->config->getSessionEndpoint());
343+
$this->assertSame($expected, $this->config->getBuildEndpoint());
344344
}
345345

346346
public function testTheSessionEndpointCanBeSetIfNecessary()

0 commit comments

Comments
 (0)