Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
yingrong1996 committed Mar 20, 2019
1 parent 03e4fad commit 17a82ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/java/seedu/addressbook/logic/LogicTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ String generateAddCommand(Person p) {
cmd.add((p.getAddress().isPrivate() ? "pa/" : "a/") + p.getAddress());

Set<Tag> tags = p.getTags();
for(Tag t: tags){
for (Tag t: tags) {
cmd.add("t/" + t.tagName);
}

Expand Down

0 comments on commit 17a82ec

Please sign in to comment.