From ae6391ecf899bac5e14bf81d84514e25641b852c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 15 Oct 2023 13:17:02 +0000 Subject: [PATCH] fix tests --- tests/Algorithm/Clustering/KmeansTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Algorithm/Clustering/KmeansTest.php b/tests/Algorithm/Clustering/KmeansTest.php index 861f745ab..2da821f82 100755 --- a/tests/Algorithm/Clustering/KmeansTest.php +++ b/tests/Algorithm/Clustering/KmeansTest.php @@ -17,7 +17,7 @@ namespace phpOMS\tests\Algorithm\Clustering; use phpOMS\Algorithm\Clustering\Kmeans; use phpOMS\Algorithm\Clustering\Point; -include __DIR__ . '/../../Autoloader.php'; +include_once __DIR__ . '/../../Autoloader.php'; /** * @testdox phpOMS\tests\Algorithm\Clustering\KmeansTest: Clustering points/elements with the K-means algorithm