Skip to content

Commit

Permalink
Merge pull request #13094 from mingyuanc/12048-data-migration-fix-stu…
Browse files Browse the repository at this point in the history
…dent-email-seed

[#12048] data migration fix student email seed
  • Loading branch information
mingyuanc authored Apr 24, 2024
2 parents e9df554 + fd76605 commit f83d0d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/java/teammates/client/scripts/sql/SeedDb.java
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ private void seedStudents(int courseNumber, String courseId) {
}

try {
String studentEmail = String.format("Course %s Student %s Email ", courseNumber, i);
String studentEmail = String.format("Course %s Student %s Email", courseNumber, i);
String studentName = String.format("Student %s in Course %s", i, courseNumber);
String studentGoogleId = null;
String studentComments = String.format("Comments for student %s in course %s", i, courseNumber);
Expand Down

0 comments on commit f83d0d8

Please sign in to comment.