Skip to content

Commit

Permalink
Issue 235 fix (#236)
Browse files Browse the repository at this point in the history
* Update secret(s) to pass multiple tests

* codecov stds

* Codecov stds
  • Loading branch information
nd4p90x authored Dec 11, 2024
1 parent 9f92e18 commit 54b41eb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion lib/Version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<?php

declare(strict_types=1);

global $SEGMENT_VERSION;
$SEGMENT_VERSION = "3.8.0";

$SEGMENT_VERSION = '3.8.0';
2 changes: 1 addition & 1 deletion test/ConsumerLibCurlTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public function testRequestCompression(): void
},
];

$client = new Client('x', $options);
$client = new Client('oq0vdlg7yi', $options);

# Should error out with debug on.
self::assertTrue($client->track(['user_id' => 'some-user', 'event' => 'Socket PHP Event']));
Expand Down
2 changes: 1 addition & 1 deletion test/ConsumerSocketTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function testDebugProblems(): void
},
];

$client = new Client('x', $options);
$client = new Client('oq0vdlg7yi', $options);

// Should error out with debug on.
self::assertTrue($client->track(['user_id' => 'some-user', 'event' => 'Socket PHP Event']));
Expand Down

0 comments on commit 54b41eb

Please sign in to comment.