From 2619226b4df06a7f650110c27b58038564ccc65d Mon Sep 17 00:00:00 2001 From: Bojan Rosko Date: Wed, 26 Feb 2025 14:47:36 +0000 Subject: [PATCH] minor fix --- tests/wormhole/test_cluster_wh.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/wormhole/test_cluster_wh.cpp b/tests/wormhole/test_cluster_wh.cpp index dab60809..6ca69a8e 100644 --- a/tests/wormhole/test_cluster_wh.cpp +++ b/tests/wormhole/test_cluster_wh.cpp @@ -123,7 +123,7 @@ TEST(SiliconDriverWH, Harvesting) { } for (const auto& chip : cluster.get_target_device_ids()) { - ASSERT_LT(cluster.get_soc_descriptor(chip).get_cores(CoreType::TENSIX).size(), 48) + ASSERT_LE(cluster.get_soc_descriptor(chip).get_cores(CoreType::TENSIX).size(), 48) << "Expected SOC descriptor with harvesting to have 48 workers or less for chip " << chip; } for (int i = 0; i < num_devices; i++) {