Fix test failure

- Optimistic code removed. It wasn't possible to test for this condition
  ever.
This commit is contained in:
Aaron L 2017-01-24 23:03:59 -08:00
parent 936df65ebc
commit d79f816cc1

View file

@ -159,12 +159,16 @@ func test{{$txt.LocalTable.NameGo}}ToManySetOp{{$txt.Function.Name}}(t *testing.
{{- if .ToJoinTable}} {{- if .ToJoinTable}}
if len(b.R.{{$txt.Function.ForeignName}}) != 0 { // The following checks cannot be implemented since we have no handle
t.Error("relationship was not removed properly from the slice") // to these when we call Set(). Leaving them here as wishful thinking
} // and to let people know there's dragons.
if len(c.R.{{$txt.Function.ForeignName}}) != 0 { //
t.Error("relationship was not removed properly from the slice") // if len(b.R.{{$txt.Function.ForeignName}}) != 0 {
} // t.Error("relationship was not removed properly from the slice")
// }
// if len(c.R.{{$txt.Function.ForeignName}}) != 0 {
// t.Error("relationship was not removed properly from the slice")
// }
if d.R.{{$txt.Function.ForeignName}}[0] != &a { if d.R.{{$txt.Function.ForeignName}}[0] != &a {
t.Error("relationship was not added properly to the slice") t.Error("relationship was not added properly to the slice")
} }