Skip to content

Commit

Permalink
fix typo in timeout interval
Browse files Browse the repository at this point in the history
  • Loading branch information
Maksim Fedotov committed Sep 2, 2020
1 parent 507e7ad commit 75edcf9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions e2e/selecting_tenant_no_label_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ var _ = Describe("creating a Namespace without a Tenant selector", func() {
})
It("should be assigned to the first Tenant", func() {
ns := NewNamespace("tenant-1-ns")
NamespaceCreationShouldSucceed(ns, t3, defaultPollInterval)
NamespaceShouldBeManagedByTenant(ns, t1, defaultPollInterval)
NamespaceCreationShouldSucceed(ns, t3, defaultTimeoutInterval)
NamespaceShouldBeManagedByTenant(ns, t1, defaultTimeoutInterval)
})
})
6 changes: 3 additions & 3 deletions e2e/tenant_owner_group_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ var _ = Describe("creating a Namespace with group Tenant owner", func() {
})
It("should succeed and be available in Tenant namespaces list", func() {
ns := NewNamespace("gto-namespace")
NamespaceCreationShouldSucceed(ns, tnt, defaultPollInterval)
NamespaceShouldBeManagedByTenant(ns, tnt, defaultPollInterval)
GroupShouldBeUsedInTenantRoleBinding(ns, tnt, defaultPollInterval)
NamespaceCreationShouldSucceed(ns, tnt, defaultTimeoutInterval)
NamespaceShouldBeManagedByTenant(ns, tnt, defaultTimeoutInterval)
GroupShouldBeUsedInTenantRoleBinding(ns, tnt, defaultTimeoutInterval)
})
})

0 comments on commit 75edcf9

Please sign in to comment.