Skip to content

Commit

Permalink
update test error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Yiu authored and Tim Yiu committed Sep 19, 2023
1 parent 0c0e304 commit 1f0407f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/experiment/local/assignment_filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,13 +168,13 @@ func TestEmptyResult(t *testing.T) {
assignment3 := newAssignment(user2, results)
filter := newAssignmentFilter(100)
if filter.shouldTrack(assignment1) {
t.Errorf("Assignment1 should be tracked")
t.Errorf("Assignment1 should not be tracked")
}
if filter.shouldTrack(assignment2) {
t.Errorf("Assignment2 should not be tracked")
}
if filter.shouldTrack(assignment3) {
t.Errorf("Assignment3 should be tracked")
t.Errorf("Assignment3 should not be tracked")
}
}

Expand Down

0 comments on commit 1f0407f

Please sign in to comment.