Skip to content

Commit 4dd7002

Browse files
committed
Remove debugging lines
1 parent dc0b866 commit 4dd7002

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

tests/Integrations/WordPress/V4_8/CommonScenariosTest.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,15 +66,13 @@ protected static function getTestedVersion($testedLibrary)
6666

6767
public function testScenarioGetReturnString()
6868
{
69-
var_dump("Alex 1");
7069
$this->call(
7170
GetSpec::create(
7271
'A simple GET request returning a string',
7372
'/simple?key=value&pwd=should_redact'
7473
)
7574
);
7675

77-
usleep(600000);
7876
$found_app_endpoints = false;
7977
$until = function ($request) use (&$found_app_endpoints) {
8078
if (strpos($request["body"] ?? "", "app-endpoints") !== false) {
@@ -84,8 +82,6 @@ public function testScenarioGetReturnString()
8482
};
8583
$response = $this->retrieveDumpedData($until);
8684

87-
var_dump("Alex 2");
88-
8985
$endpoints = $this->readEndpointsTelemetry($response);
9086
$endpoints = isset($endpoints[0]) ? $endpoints[0] : [];
9187
$this->assertCount(2, $endpoints);

0 commit comments

Comments
 (0)