lib/fog/aliyun/requests/storage/get_container.rb in fog-aliyun-0.3.0 vs lib/fog/aliyun/requests/storage/get_container.rb in fog-aliyun-0.3.1

- old
+ new

@@ -1,5 +1,7 @@ +# frozen_string_literal: true + module Fog module Storage class Aliyun class Real def get_container(container, options = {}) @@ -50,11 +52,10 @@ result = XmlSimple.xml_in(xml)['CommonPrefixes'] end end class Mock - def get_container(container, options = {}) - end + def get_container(container, options = {}); end end end end end