From 855477e8546633c69c39f931ba8e311d71cf3ad9 Mon Sep 17 00:00:00 2001 From: Navid Pour Date: Wed, 2 Oct 2024 23:49:09 -0700 Subject: [PATCH] back to === --- evals/index.eval.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evals/index.eval.ts b/evals/index.eval.ts index ac6035445..6c8db79ab 100644 --- a/evals/index.eval.ts +++ b/evals/index.eval.ts @@ -155,7 +155,7 @@ const extract_collaborators_from_github_repository = async () => { console.log("Extracted collaborators:", contributors); await stagehand.context.close(); - return contributors.length >= 20; + return contributors.length === 20; } catch (error) { console.error("Error or timeout occurred:", error); await stagehand.context.close(); @@ -192,7 +192,7 @@ const extract_last_twenty_github_commits = async () => { console.log("Extracted commits:", commits); await stagehand.context.close(); - return commits.length >= 20; + return commits.length === 20; } catch (error) { console.error("Error or timeout occurred:", error); await stagehand.context.close();