diff --git a/psalm.xml.dist b/psalm.xml.dist
index 502f940b3..ea60216a6 100644
--- a/psalm.xml.dist
+++ b/psalm.xml.dist
@@ -10,7 +10,6 @@
diff --git a/tests/Tracing/SpanTest.php b/tests/Tracing/SpanTest.php index e0db7c6d5..cf8956172 100644 --- a/tests/Tracing/SpanTest.php +++ b/tests/Tracing/SpanTest.php @@ -5,13 +5,13 @@ namespace Sentry\Tests\Tracing; use PHPUnit\Framework\TestCase; +use Sentry\Tests\TestUtil\ClockMock; use Sentry\Tracing\Span; use Sentry\Tracing\SpanContext; use Sentry\Tracing\SpanId; use Sentry\Tracing\TraceId; use Sentry\Tracing\Transaction; use Sentry\Tracing\TransactionContext; -use Sentry\Util\ClockMock; /** * @group time-sensitive diff --git a/tests/Tracing/TransactionTest.php b/tests/Tracing/TransactionTest.php index 61c8d44f6..76a2c3aab 100644 --- a/tests/Tracing/TransactionTest.php +++ b/tests/Tracing/TransactionTest.php @@ -12,11 +12,10 @@ use Sentry\Options; use Sentry\State\Hub; use Sentry\State\HubInterface; -use Sentry\Tracing\Span; +use Sentry\Tests\TestUtil\ClockMock; use Sentry\Tracing\SpanContext; use Sentry\Tracing\Transaction; use Sentry\Tracing\TransactionContext; -use Sentry\Util\ClockMock; /** * @group time-sensitive diff --git a/tests/Transport/HttpTransportTest.php b/tests/Transport/HttpTransportTest.php index 66d564b85..1d34137ae 100644 --- a/tests/Transport/HttpTransportTest.php +++ b/tests/Transport/HttpTransportTest.php @@ -14,9 +14,9 @@ use Sentry\Options; use Sentry\Profiling\Profile; use Sentry\Serializer\PayloadSerializerInterface; +use Sentry\Tests\TestUtil\ClockMock; use Sentry\Transport\HttpTransport; use Sentry\Transport\ResultStatus; -use Sentry\Util\ClockMock; final class HttpTransportTest extends TestCase { diff --git a/tests/Transport/RateLimiterTest.php b/tests/Transport/RateLimiterTest.php index c1112e9ab..6a34556c7 100644 --- a/tests/Transport/RateLimiterTest.php +++ b/tests/Transport/RateLimiterTest.php @@ -7,8 +7,8 @@ use PHPUnit\Framework\TestCase; use Sentry\EventType; use Sentry\HttpClient\Response; +use Sentry\Tests\TestUtil\ClockMock; use Sentry\Transport\RateLimiter; -use Sentry\Util\ClockMock; /** * @group time-sensitive diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 49e701ceb..a3a416679 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -5,9 +5,9 @@ use Sentry\Breadcrumb; use Sentry\Event; use Sentry\Metrics\Metrics; +use Sentry\Tests\TestUtil\ClockMock; use Sentry\Tracing\Span; use Sentry\Transport\RateLimiter; -use Sentry\Util\ClockMock; require_once __DIR__ . '/../vendor/autoload.php';