Skip to content

Commit

Permalink
test: fix broken wip pacts spec which only fails on Sqlite
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Sep 30, 2019
1 parent 7341372 commit fc73439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pact_broker/pacts/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def find_wip_pact_versions_for_provider provider_name, provider_tags = []
.where(Sequel[:provider_tags][:name] => provider_tag)
.provider(provider_name)
.where(Sequel[:verifications][:success] => true)
.select(Sequel[:latest_tagged_pact_publications][:id])
.select(Sequel[:latest_tagged_pact_publications][:id].as(:id))
.collect(&:id)
[provider_tag, ids]
end
Expand Down

0 comments on commit fc73439

Please sign in to comment.