Skip to content

Commit 7d0ac90

Browse files
committed
Fixed tests.
1 parent e1b3f83 commit 7d0ac90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/ConnectionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ public function testEnhancedTracer()
139139
$self->assertEquals('request', $data->getType());
140140

141141
foreach ($data->getHeaders() as $header => $value) {
142-
$this->assertInternalType('string', $value, "The header value should be a string");
143-
$this->assertInternalType('string', $header, "The header should be a string");
142+
$self->assertInternalType('string', $value, "The header value should be a string");
143+
$self->assertInternalType('string', $header, "The header should be a string");
144144
}
145145

146146
} else {

0 commit comments

Comments
 (0)