Test Failed
Branch master (24ce30)
by Lyal
05:59 queued 03:42
created
tests/unit/EmployerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,6 +64,6 @@
 block discarded – undo
64 64
 
65 65
     protected function getEmployer($values = NULL)
66 66
     {
67
-        return new Employer($values,$this->getClient());
67
+        return new Employer($values, $this->getClient());
68 68
     }
69 69
 }
70 70
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/ProgramTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $program = $this->getProgram();
17 17
         $program->id = 'e44aa283528e6fde7d542194';
18
-        $this->assertSame('e44aa283528e6fde7d542194',$program->id);
18
+        $this->assertSame('e44aa283528e6fde7d542194', $program->id);
19 19
     }
20 20
 
21 21
     public function testFields()
@@ -50,6 +50,6 @@  discard block
 block discarded – undo
50 50
 
51 51
     protected function getProgram($values = NULL)
52 52
     {
53
-        return new Program($values,$this->getClient());
53
+        return new Program($values, $this->getClient());
54 54
     }
55 55
 }
56 56
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/SchoolTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         $school = $this->getSchool();
17 17
         $school->id = 'e44aa283528e6fde7d542194';
18
-        $this->assertSame('e44aa283528e6fde7d542194',$school->id);
18
+        $this->assertSame('e44aa283528e6fde7d542194', $school->id);
19 19
     }
20 20
 
21 21
     public function testFields()
@@ -58,6 +58,6 @@  discard block
 block discarded – undo
58 58
 
59 59
     protected function getSchool($values = NULL)
60 60
     {
61
-        return new School($values,$this->getClient());
61
+        return new School($values, $this->getClient());
62 62
     }
63 63
 }
64 64
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/SsnTraceTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,6 +74,6 @@
 block discarded – undo
74 74
 
75 75
     protected function getSsnTrace($values = NULL)
76 76
     {
77
-        return new SsnTrace($values,$this->getClient());
77
+        return new SsnTrace($values, $this->getClient());
78 78
     }
79 79
 }
80 80
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/MotorVehicleReportTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -104,6 +104,6 @@
 block discarded – undo
104 104
 
105 105
     protected function getMotorVehicleReport($values = NULL)
106 106
     {
107
-        return new MotorVehicleReport($values,$this->getClient());
107
+        return new MotorVehicleReport($values, $this->getClient());
108 108
     }
109 109
 }
110 110
\ No newline at end of file
Please login to merge, or discard this patch.
tests/unit/AdverseItemTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,6 @@
 block discarded – undo
37 37
 
38 38
     protected function getAdverseItem($values = NULL)
39 39
     {
40
-        return new AdverseItem($values,$this->getClient());
40
+        return new AdverseItem($values, $this->getClient());
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
tests/unit/CandidateTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,6 +69,6 @@
 block discarded – undo
69 69
 
70 70
     protected function getCandidate($values = NULL)
71 71
     {
72
-        return new Candidate($values,$this->getClient());
72
+        return new Candidate($values, $this->getClient());
73 73
     }
74 74
 }
Please login to merge, or discard this patch.
tests/unit/ClientTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $responses = [new Response(200, [], '{"id": "57ed4ce3057e0b002adc6d93","object": "adverse_item","text": "License status: Suspended"}')];
96 96
         $client = $this->getClient($responses);
97
-        $response = $client->request('GET', $client->getApiEndPoint() . 'fake_request');
97
+        $response = $client->request('GET', $client->getApiEndPoint().'fake_request');
98 98
         $this->assertEquals(json_decode('{"id": "57ed4ce3057e0b002adc6d93","object": "adverse_item","text": "License status: Suspended"}'), $response);
99 99
     }
100 100
 
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
         $this->expectException(BadRequest::class);
104 104
         $responses = [new Response(400, [])];
105 105
         $client = $this->getClient($responses);
106
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
106
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
107 107
         $this->getClient($responses);
108 108
     }
109 109
 
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $this->expectException(Unauthorized::class);
113 113
         $responses = [new Response(401, [])];
114 114
         $client = $this->getClient($responses);
115
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
115
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
116 116
         $this->getClient($responses);
117 117
     }
118 118
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         $this->expectException(Forbidden::class);
122 122
         $responses = [new Response(403, [])];
123 123
         $client = $this->getClient($responses);
124
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
124
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
125 125
         $this->getClient($responses);
126 126
     }
127 127
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
         $this->expectException(NotFound::class);
131 131
         $responses = [new Response(404, [])];
132 132
         $client = $this->getClient($responses);
133
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
133
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
134 134
         $this->getClient($responses);
135 135
 
136 136
     }
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
         $this->expectException(Conflict::class);
141 141
         $responses = [new Response(409, [])];
142 142
         $client = $this->getClient($responses);
143
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
143
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
144 144
         $this->getClient($responses);
145 145
     }
146 146
 
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
         $this->expectException(InternalServerError::class);
150 150
         $responses = [new Response(500, [])];
151 151
         $client = $this->getClient($responses);
152
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
152
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
153 153
         $this->getClient($responses);
154 154
     }
155 155
 
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
         $this->expectException(UnhandledRequestError::class);
159 159
         $responses = [new Response(417, [])];
160 160
         $client = $this->getClient($responses);
161
-        $client->request('GET', $client->getApiEndPoint() . 'fake_request');
161
+        $client->request('GET', $client->getApiEndPoint().'fake_request');
162 162
         $this->getClient($responses);
163 163
     }
164 164
 
Please login to merge, or discard this patch.
tests/unit/GlobalWatchListSearchTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,6 +74,6 @@
 block discarded – undo
74 74
 
75 75
     protected function getGlobalWatchListSearch($values = NULL)
76 76
     {
77
-        return new GlobalWatchlistSearch($values,$this->getClient());
77
+        return new GlobalWatchlistSearch($values, $this->getClient());
78 78
     }
79 79
 }
80 80
\ No newline at end of file
Please login to merge, or discard this patch.