Browse Source

Cleanup extra testing via lines.

pull/2/head
Justine Alexandra Roberts Tunney 11 years ago
parent
commit
990357e910
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      sip/msg_test.go

+ 2
- 2
sip/msg_test.go View File

@ -1124,8 +1124,8 @@ func TestParseMsg(t *testing.T) {
}
if !reflect.DeepEqual(test.msg.Via, msg.Via) {
t.Errorf("Via:\n%#v !=\n%#v", test.msg.Via, msg.Via)
t.Errorf("Via #2:\n%#v !=\n%#v", test.msg.Via.Next, msg.Via.Next)
t.Errorf("Via #3:\n%#v !=\n%#v", test.msg.Via.Next.Next, msg.Via.Next.Next)
// t.Errorf("Via #2:\n%#v !=\n%#v", test.msg.Via.Next, msg.Via.Next)
// t.Errorf("Via #3:\n%#v !=\n%#v", test.msg.Via.Next.Next, msg.Via.Next.Next)
// t.Errorf("Via #4:\n%#v !=\n%#v", test.msg.Via.Next.Next.Next, msg.Via.Next.Next.Next)
}
if !reflect.DeepEqual(test.msg.Request, msg.Request) {


Loading…
Cancel
Save