(t *testing.T, expected, actual []byte)
| 246 | } |
| 247 | |
| 248 | func compareBytes(t *testing.T, expected, actual []byte) { |
| 249 | for i, v := range expected { |
| 250 | if actual[i] != v { |
| 251 | t.Fatalf("Bad bytes") |
| 252 | } |
| 253 | } |
| 254 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…