(t *testing.T, expected, value string)
| 171 | } |
| 172 | |
| 173 | func compareStrings(t *testing.T, expected, value string) { |
| 174 | if value != expected { |
| 175 | t.Fatalf("expected '%v', actual '%v'", expected, value) |
| 176 | } |
| 177 | } |
| 178 | |
| 179 | func createTestTag(t *testing.T, repo *Repository, commit *Commit) *Oid { |
| 180 | loc, err := time.LoadLocation("Europe/Berlin") |
no outgoing calls
no test coverage detected
searching dependent graphs…