Skip to content

Commit 77653cb

Browse files
author
Shashank Jain
committed
Chore: fixing travis ci issues
1 parent 5e52723 commit 77653cb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: .travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: php
22

33
php:
4-
- 5.5
54
- 5.6
65
- 7.0
76

Diff for: phpunit.xml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
convertNoticesToExceptions="true"
88
convertWarningsToExceptions="true"
99
processIsolation="false"
10+
debug="true"
1011
stopOnFailure="false">
1112
<testsuites>
1213
<testsuite name="Application Test Suite">

Diff for: tests/DummyUserTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,14 +105,14 @@ public function testUserIndexWithsOrderParameter()
105105
[
106106
'order' => "id desc",
107107
]);
108-
$this->dump();
108+
109109
$this->assertEquals(200, $response->status());
110110

111111
$response = $this->call('GET', '/dummyUser',
112112
[
113113
'order' => "id asc",
114114
]);
115-
$this->dump();
115+
116116
$this->assertEquals(200, $response->status());
117117

118118
}

0 commit comments

Comments
 (0)