Skip to content

Commit ec2f630

Browse files
committed
Fix HW04 (lesson05)
1 parent f1e2b00 commit ec2f630

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/ru/javawebinar/basejava/storage/AbstractStorageTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public void update() throws Exception {
5858

5959
@Test(expected = NotExistStorageException.class)
6060
public void updateNotExist() throws Exception {
61-
storage.get("dummy");
61+
storage.update(new Resume("dummy"));
6262
}
6363

6464
@Test

0 commit comments

Comments
 (0)