We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dcceff commit 241da83Copy full SHA for 241da83
tests/WebChromiumTest.php
@@ -26,7 +26,12 @@ class WebChromiumTest extends Base
26
...Base::BAR_RESPONSES,
27
...Base::GENERAL_RESPONSES,
28
...Base::LARGE_FILE_RESPONSES,
29
- ...Base::EXCEPTION_RESPONSES,
30
- ...Base::REALTIME_RESPONSES,
+ ...Base::EXCEPTION_RESPONSES
31
];
+
32
+ public function setUp(): void
33
+ {
34
+ $headers = "x-sdk-name: {$this->sdkName}; x-sdk-platform: {$this->sdkPlatform}; x-sdk-language: {$this->sdkLanguage}; x-sdk-version: {$this->version}";
35
+ array_push($this->expectedOutput, $headers, ...Base::REALTIME_RESPONSES);
36
+ }
37
}
0 commit comments