Skip to content

Commit

Permalink
fix failing unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkorynta committed Nov 11, 2024
1 parent d6f48b6 commit a0a6097
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cwms-data-api/src/test/java/cwms/cda/data/dto/ClobTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ void testRoundtripXML2Clobs(String format) {
assertEquals(1, clobs2.getPageSize());
assertEquals(1, clobs2.getTotal());
assertEquals("Y3Vyc29yfHwxfHwx", clobs2.getPage());
assertEquals("TVlPRkZJQ0UvTVlJRDtERVNDUklQVElPTj1NWURFU0N8fDF8fDE=", clobs2.getNextPage());
assertEquals("VFZsUFJrWkpRMFY4ZkUxWlNVUT18fDF8fDE=", clobs2.getNextPage());
assertEquals(clob.getOfficeId(), Clobs.getOffice(clobs2.getNextPage()));
assertEquals(clob.getId(), Clobs.getId(clobs2.getNextPage()));
assertEquals(clob.getId(), clobs2.getClobs().get(0).getId());
assertEquals(clob.getOfficeId(), clobs2.getClobs().get(0).getOfficeId());
assertEquals(clob.getDescription(), clobs2.getClobs().get(0).getDescription());
Expand Down

0 comments on commit a0a6097

Please sign in to comment.