Skip to content

Commit

Permalink
remove duplicate label selector
Browse files Browse the repository at this point in the history
  • Loading branch information
karanthukral committed Jul 19, 2017
1 parent 72d40ca commit 8bd237d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/helpers/fixture_set.rb
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def assert_service_account_present(name)

def assert_daemon_set_present(name)
found = false
daemon_sets = v1beta1_kubeclient.get_daemon_sets(namespace: namespace, label_selector: "app=#{name},app=#{name}")
daemon_sets = v1beta1_kubeclient.get_daemon_sets(namespace: namespace, label_selector: "app=#{name}")
daemon_sets.each do |ds|
found = true if ds.metadata.name == name
end
Expand Down
2 changes: 1 addition & 1 deletion test/integration/kubernetes_deploy_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def test_full_hello_cloud_set_deploy_succeeds
"Deploying ConfigMap/hello-cloud-configmap-data (timeout: 30s)",
"Hello from Docker!", # unmanaged pod logs
"Result: SUCCESS",
"Successfully deployed 13 resources"
"Successfully deployed 14 resources"
], in_order: true)

assert_logs_match_all([
Expand Down

0 comments on commit 8bd237d

Please sign in to comment.