Skip to content

Commit

Permalink
Merge pull request #255 from PLADI-ALM/fix/PDS-171-getOffice-testCode
Browse files Browse the repository at this point in the history
[PDS-171/hotfix] 회의실 목록조회 테스트 코드 수정
  • Loading branch information
leeseunghakhello authored Nov 28, 2023
2 parents 89b5d4d + c1cbde3 commit 37aee05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ void findAvailableOfficesTest() {

// then
assertNotNull(result);
assertEquals(1, result.getTotalElements());
assertFalse(result.getContent().isEmpty());
result.getContent().forEach(officeRes -> {
assertEquals("회의실 A", officeRes.getName());
assertTrue(officeRes.getFacilityList().contains("빔 프로젝터"));
Expand Down

0 comments on commit 37aee05

Please sign in to comment.