From b809f34e29560ed3efe89f9b1174fba07d31a88b Mon Sep 17 00:00:00 2001 From: Matt Stauffer Date: Thu, 7 Jul 2022 21:09:41 -0400 Subject: [PATCH] Update DockerTagsTest with latest natural end tag for Postgres --- tests/Feature/DockerTagsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Feature/DockerTagsTest.php b/tests/Feature/DockerTagsTest.php index f1ac34aa..36bc9e2e 100644 --- a/tests/Feature/DockerTagsTest.php +++ b/tests/Feature/DockerTagsTest.php @@ -42,7 +42,7 @@ function it_sorts_the_versions_naturally() $tags = collect($dockerTags->getTags()); $this->assertEquals('latest', $tags->first()); - $this->assertEquals('9', $tags->last()); + $this->assertEquals('9-bullseye', $tags->last()); } /** @test */