From 9ed6eb336e1722d139860780009335938e072973 Mon Sep 17 00:00:00 2001 From: bhtibrewal Date: Sun, 31 Dec 2023 00:05:51 +0530 Subject: [PATCH] update integration test --- .../java/com/RDS/skilltree/EndorsementsIntegrationTests.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/skill-tree/src/test/java/com/RDS/skilltree/EndorsementsIntegrationTests.java b/skill-tree/src/test/java/com/RDS/skilltree/EndorsementsIntegrationTests.java index 69772a14..652f2244 100644 --- a/skill-tree/src/test/java/com/RDS/skilltree/EndorsementsIntegrationTests.java +++ b/skill-tree/src/test/java/com/RDS/skilltree/EndorsementsIntegrationTests.java @@ -3,7 +3,6 @@ import com.RDS.skilltree.Skill.*; import com.RDS.skilltree.User.*; import com.RDS.skilltree.Endorsement.*; -import io.restassured.RestAssured; import io.restassured.response.Response; import org.junit.jupiter.api.*; import org.springframework.beans.factory.annotation.Autowired; @@ -39,7 +38,7 @@ public EndorsementsIntegrationTests(UserService userService, UserRepository user private void addData() throws MalformedURLException { user = userService.createUser(UserDRO.builder() .role(UserRole.MEMBER) - .rdsUserId("p6Bo61VEClhtVdwW0ihg") + .rdsUserId("p6Bo61VEClhtVdwW0iha") .lastName("Doe") .firstName("John") .imageUrl(new URL("https://res.cloudinary.com/realdevsquad/image/upload/v1666193594/profile/p6Bo61VEClhtVdwW0iGH/lezguwdq5bgzawa3.jpg")) @@ -53,7 +52,6 @@ private void addData() throws MalformedURLException { .build()); } - @Test @Disabled @DisplayName("Fetch all the endorsements")