From 5c08654f98877eb588bb05e97eb306103675c6a3 Mon Sep 17 00:00:00 2001 From: Ben Ramsey Date: Fri, 24 Sep 2021 11:55:30 -0500 Subject: [PATCH] Move exception expectation --- tests/UuidTest.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/UuidTest.php b/tests/UuidTest.php index 65594d4..a581da0 100644 --- a/tests/UuidTest.php +++ b/tests/UuidTest.php @@ -1878,10 +1878,9 @@ class UuidTest extends TestCase { Uuid::setFactory(new UuidFactory(new FeatureSet(false, false, true))); - $uuid = Uuid::uuid1(); - $this->expectException('Ramsey\Uuid\Exception\UnsatisfiedDependencyException'); + $uuid = Uuid::uuid1(); $uuid->getInteger(); }