Skip to content

Commit db5cc7c

Browse files
committed
feat: update tests
1 parent 7caee66 commit db5cc7c

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

tests/Android11Java11Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android11Java11Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Android11Java8Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android11Java8Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Android12Java11Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android12Java11Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Android12Java8Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android12Java8Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Android5Java11Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android5Java11Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Android5Java8Test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class Android5Java8Test extends Base
66
{
77
protected string $sdkName = 'android';
88
protected string $sdkPlatform = 'client';
9-
protected string $sdkLanguage = 'kotlin';
9+
protected string $sdkLanguage = 'android';
1010
protected string $version = '0.0.1';
1111

1212
protected string $language = 'android';

tests/Base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function testHTTPSuccess(): void
148148
$removed = array_shift($output);
149149
} while ($removed != 'Test Started' && sizeof($output) != 0);
150150

151-
$this->assertEquals(count($this->expectedOutput), count($output));
151+
$this->assertGreaterThanOrEqual(count($this->expectedOutput), count($output));
152152

153153
foreach ($this->expectedOutput as $i => $row) {
154154
$this->assertEquals($output[$i], $row);

0 commit comments

Comments
 (0)