Skip to content

Commit

Permalink
Merge pull request #145 from Chiarena/BugFixing-branch
Browse files Browse the repository at this point in the history
fixed the jar file
  • Loading branch information
Chiarena authored Apr 13, 2024
2 parents f953a49 + a2ed04d commit f052ad6
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 8 deletions.
1 change: 0 additions & 1 deletion docs/UserGuide.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

# _TutorTrack User Guide_
******

Expand Down
6 changes: 0 additions & 6 deletions src/main/java/seedu/address/model/util/SampleDataUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@ public static Student[] getSampleStudents() {
new Student(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("[email protected]"),
new Address("Blk 11 Ang Mo Kio Street 74, #11-04"),
new Subject("Physics")),
new Student(new Name("Bernice Yu"), new Phone("99272758"), new Email("[email protected]"),
new Address("Blk 30 Lorong 3 Serangoon Gardens, #07-18"),
new Subject("English")),
new Student(new Name("Charlotte Oliveiro"), new Phone("93210283"), new Email("[email protected]"),
new Address("Blk 11 Ang Mo Kio Street 74, #11-04"),
new Subject("Physics")),
new Student(new Name("David Li"), new Phone("91031282"), new Email("[email protected]"),
new Address("Blk 436 Serangoon Gardens Street 26, #16-43"),
new Subject("History")),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class SampleDataUtilTest {
@Test
void getSampleStudents() {
Student[] sampleStudents = SampleDataUtil.getSampleStudents();
assertEquals(8, sampleStudents.length);
assertEquals(6, sampleStudents.length);
}

@Test
Expand Down

0 comments on commit f052ad6

Please sign in to comment.