From d4a091651b36fec118e84875f60acfca86b6404c Mon Sep 17 00:00:00 2001 From: Ragini Pandey <99394366+ragini-pandey@users.noreply.github.com> Date: Fri, 1 May 2026 16:57:00 +0530 Subject: [PATCH] fix(curriculum): simplify empty board formatToString test in lab-project-idea-board (#67108) Co-authored-by: Jeevankumar S --- .../67051431a73f1ca25d9a6f25.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/curriculum/challenges/english/blocks/lab-project-idea-board/67051431a73f1ca25d9a6f25.md b/curriculum/challenges/english/blocks/lab-project-idea-board/67051431a73f1ca25d9a6f25.md index 7682b2cb74c..fbf587f476f 100644 --- a/curriculum/challenges/english/blocks/lab-project-idea-board/67051431a73f1ca25d9a6f25.md +++ b/curriculum/challenges/english/blocks/lab-project-idea-board/67051431a73f1ca25d9a6f25.md @@ -218,21 +218,8 @@ assert.isEmpty(techProjects.ideas); When `new ProjectIdeaBoard("Empty Board")` is empty, `emptyBoard.formatToString()` should return `Empty Board has 0 idea(s)\n`. ```js - -let smartHome = new ProjectIdea( - "Smart Home System", - "An integrated system to control lighting, temperature, and security devices remotely." -); - -// Create a project board and pin ideas -let techProjects = new ProjectIdeaBoard("Tech Projects Board"); - -// Create an empty board let emptyBoard = new ProjectIdeaBoard("Empty Board"); -// Attempt to unpin a project from an empty board -emptyBoard.unpin(smartHome); - assert.equal(emptyBoard.formatToString(), "Empty Board has 0 idea(s)\n"); ```