Skip to content

Commit d0dcc30

Browse files
Fix uris for tests
1 parent 5f7da23 commit d0dcc30

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Integration/SeqTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SeqTest extends TestCase
1515

1616
public function setUp()
1717
{
18-
$this->instance = new Seq('http://0.0.0.0:6060', 'an example key');
18+
$this->instance = new Seq('0.0.0.0', 'an example key');
1919
do {
2020
$response = $this->instance->get();
2121
} while ($response);

tests/Unit/SeqTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class SeqTest extends TestCase
2020

2121
public function setUp()
2222
{
23-
$this->instance = new Seq('http://0.0.0.0:6060', 'an example key');
23+
$this->instance = new Seq('0.0.0.0', 'an example key');
2424
}
2525

2626
public function testInit()

0 commit comments

Comments
 (0)