summaryrefslogtreecommitdiff
path: root/spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb
diff options
context:
space:
mode:
authorMatija Čupić <matteeyah@gmail.com>2017-12-04 17:02:18 +0100
committerMatija Čupić <matteeyah@gmail.com>2017-12-04 17:02:18 +0100
commitf1357a1e15bead6b58c049357c765dd991c04d9b (patch)
tree709346bc20234117281b74ff4cd67390ba9ad737 /spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb
parenta42b43ce7a9146ac1035328f2bc1cfc5f06e9371 (diff)
downloadgitlab-ce-f1357a1e15bead6b58c049357c765dd991c04d9b.tar.gz
Remove references of project.cluster from specs
Diffstat (limited to 'spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb')
-rw-r--r--spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb b/spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb
index 9f41534441b..05f281fffff 100644
--- a/spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb
+++ b/spec/migrations/migrate_gcp_clusters_to_new_clusters_architectures_spec.rb
@@ -57,7 +57,7 @@ describe MigrateGcpClustersToNewClustersArchitectures, :migration do
expect(cluster.platform_type).to eq('kubernetes')
expect(cluster.project).to eq(project)
- expect(project.cluster).to eq(cluster)
+ expect(project.clusters).to include(cluster)
expect(cluster.provider_gcp.cluster).to eq(cluster)
expect(cluster.provider_gcp.status).to eq(status)
@@ -134,7 +134,7 @@ describe MigrateGcpClustersToNewClustersArchitectures, :migration do
expect(cluster.platform_type).to eq('kubernetes')
expect(cluster.project).to eq(project)
- expect(project.cluster).to eq(cluster)
+ expect(project.clusters).to include(cluster)
expect(cluster.provider_gcp.cluster).to eq(cluster)
expect(cluster.provider_gcp.status).to eq(status)