Fixed typo on variable name

This commit is contained in:
Halil Kaskavalci 2015-12-01 08:13:02 +02:00
parent 8957a47ec4
commit ab2979ea21
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func TestJobEndpoint_Register(t *testing.T) {
t.Fatalf("index mis-match")
}
serviceName := out.TaskGroups[0].Tasks[0].Services[0].Name
exptectedServiceName := "web-frontend"
expectedServiceName := "web-frontend"
if serviceName != expectedServiceName {
t.Fatalf("Expected Service Name: %s, Actual: %s", expectedServiceName, serviceName)
}