Skip to content

Commit

Permalink
upgrade hardcoded wsdl to most recent version https://1084658.suiteta…
Browse files Browse the repository at this point in the history
  • Loading branch information
merit-finns committed Nov 11, 2024
1 parent 11509e9 commit 052ab68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion netsuite/soap_api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@


class NetSuiteSoapApi:
version = "2021.1.0"
version = "2024.2.0"
wsdl_url_tmpl = "https://{account_slug}.suitetalk.api.netsuite.com/wsdl/v{underscored_version}/netsuite.wsdl"

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_soap_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def test_netsuite_wsdl_url(dummy_config):
soap_api = NetSuiteSoapApi(dummy_config)
assert (
soap_api.wsdl_url
== "https://123456-sb1.suitetalk.api.netsuite.com/wsdl/v2021_1_0/netsuite.wsdl"
== "https://123456-sb1.suitetalk.api.netsuite.com/wsdl/v2024_2_0/netsuite.wsdl"
)


Expand Down

0 comments on commit 052ab68

Please sign in to comment.