Skip to content

Commit

Permalink
Merge pull request #257 from laney0808/fix-icon
Browse files Browse the repository at this point in the history
Fix icon.
  • Loading branch information
NatLeong authored Apr 15, 2024
2 parents cb80ba9 + e586eab commit 385a3e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/ui/UiManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ public class UiManager implements Ui {
public static final String ALERT_DIALOG_PANE_FIELD_ID = "alertDialogPane";

private static final Logger logger = LogsCenter.getLogger(UiManager.class);
private static final String ICON_APPLICATION = "/images/address_book_32.png";
private static final String ICON_APPLICATION = "/images/stethoscope.png";

private Logic logic;
private MainWindow mainWindow;
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/seedu/address/commons/util/AppUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class AppUtilTest {

@Test
public void getImage_exitingImage() {
assertNotNull(AppUtil.getImage("/images/address_book_32.png"));
assertNotNull(AppUtil.getImage("/images/stethoscope.png"));
}

@Test
Expand Down

0 comments on commit 385a3e0

Please sign in to comment.