gds-api-adapters 103.4.3 → 103.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/gds_api/test_helpers/asset_manager.rb +0 -5
- data/lib/gds_api/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 67c7ba0293e14839870f77ec06a7bc60797d154ff3b4523df19006cdf61bcb1e
|
|
4
|
+
data.tar.gz: d5bc86bfdc35295213bf82cc8eb473be269c98809f98f2323f5bc526e0eeb146
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e044a28163e1ea9927dc347644c41da9d86291b8c08240201fc152f6b7ad550788c91cb7b982f1e679944427387e5ebd8b4a53853225add8e12ee274444088eb
|
|
7
|
+
data.tar.gz: 1755a3b85488e72e02906fb1250eb9f3afb2a1af5fba68d408226581487e7f8343bb3a1fe1eab94cf261cecfb3aacf9acb1788fecd9b1d1dd2b25081681f01ce
|
|
@@ -166,11 +166,6 @@ module GdsApi
|
|
|
166
166
|
.to_return(status: 404)
|
|
167
167
|
end
|
|
168
168
|
|
|
169
|
-
def stub_asset_manager_restore_asset_conflict(asset_id)
|
|
170
|
-
stub_request(:post, "#{ASSET_MANAGER_ENDPOINT}/assets/#{asset_id}/restore")
|
|
171
|
-
.to_return(status: 409)
|
|
172
|
-
end
|
|
173
|
-
|
|
174
169
|
def stub_asset_manager_restore_asset_failure(asset_id)
|
|
175
170
|
stub_request(:post, "#{ASSET_MANAGER_ENDPOINT}/assets/#{asset_id}/restore")
|
|
176
171
|
.to_return(status: 500)
|
data/lib/gds_api/version.rb
CHANGED