test/test_institutions.rb in plaid-15.11.0 vs test/test_institutions.rb in plaid-16.0.0

- old
+ new

@@ -3,21 +3,21 @@ # Internal: The test for Plaid::Institutions. class PlaidInstitutionsTest < PlaidTest def test_get institutions_get_request = Plaid::InstitutionsGetRequest.new({ :count => 3, - :offset => 1, + :offset => 4, :country_codes => ["US"], }) response = client.institutions_get(institutions_get_request) assert_equal(3, response.to_hash[:institutions].length) end def test_get_with_options institutions_get_request = Plaid::InstitutionsGetRequest.new({ :count => 3, - :offset => 1, + :offset => 4, :country_codes => ["US"], :options => { products: ["transactions"], include_optional_metadata: true, },