Fix runningAddresses typo

This commit is contained in:
Clayton O'Neill 2017-07-14 09:30:58 -04:00
parent d416d029ec
commit fb42b9979d
2 changed files with 6 additions and 6 deletions

View file

@ -343,7 +343,7 @@ func TestKeyfunc(t *testing.T) {
func TestRunningAddresessWithPublishService(t *testing.T) {
fk := buildStatusSync()
r, _ := fk.runningAddresess()
r, _ := fk.runningAddresses()
if r == nil {
t.Fatalf("returned nil but expected valid []string")
}
@ -357,7 +357,7 @@ func TestRunningAddresessWithPods(t *testing.T) {
fk := buildStatusSync()
fk.PublishService = ""
r, _ := fk.runningAddresess()
r, _ := fk.runningAddresses()
if r == nil {
t.Fatalf("returned nil but expected valid []string")
}