From 90edcd48f4cce15f5f01b1dfd7a2902018320a28 Mon Sep 17 00:00:00 2001 From: Sergei Shitikov Date: Sun, 29 Sep 2024 18:14:00 +0200 Subject: [PATCH] add forgotten stop() container for opensearch test --- tests/Integration/OldTests/ContainerTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Integration/OldTests/ContainerTest.php b/tests/Integration/OldTests/ContainerTest.php index 20b86a8..0f36535 100644 --- a/tests/Integration/OldTests/ContainerTest.php +++ b/tests/Integration/OldTests/ContainerTest.php @@ -110,6 +110,8 @@ class ContainerTest extends TestCase $this->assertArrayHasKey('cluster_name', $data); $this->assertEquals('docker-cluster', $data['cluster_name']); + + $container->stop(); } public function testPostgreSQLContainer(): void