Skip to content

Commit

Permalink
fix: previously broken specs
Browse files Browse the repository at this point in the history
In #19 we changed the default version
but we never updated the specs accordingly.
  • Loading branch information
ncperry committed Feb 1, 2024
1 parent 2ab72c7 commit 46e7100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/netsuite/configuration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@

context 'when the wsdl has not been set' do
it 'returns a path to the WSDL to use for the API' do
expect(config.wsdl).to eq("https://webservices.netsuite.com/wsdl/v2015_1_0/netsuite.wsdl")
expect(config.wsdl).to eq("https://webservices.netsuite.com/wsdl/v2023_1_0/netsuite.wsdl")
end
end

Expand Down Expand Up @@ -290,7 +290,7 @@
describe '#api_version' do
context 'when no api_version is defined' do
it 'defaults to 2015_1' do
expect(config.api_version).to eq('2015_1')
expect(config.api_version).to eq('2023_1')
end
end
end
Expand Down

0 comments on commit 46e7100

Please sign in to comment.