diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2019-08-12 12:54:49 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2019-08-12 12:54:49 +0200 |
commit | 46100d63fa462aad2732d01d9621fe799700c453 (patch) | |
tree | c329caeee5ad403deaca53e05a2c75ae09446674 /test | |
parent | 5c38560d8f1bfe2bb9ee60e237466f8620e0d806 (diff) | |
download | ee-python-46100d63fa462aad2732d01d9621fe799700c453.tar.gz ee-python-46100d63fa462aad2732d01d9621fe799700c453.tar.bz2 ee-python-46100d63fa462aad2732d01d9621fe799700c453.tar.xz ee-python-46100d63fa462aad2732d01d9621fe799700c453.zip |
digikey-search-parts: Sorting result table by SPN so the output is
consistent.
Diffstat (limited to 'test')
-rw-r--r-- | test/test_digikey.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_digikey.py b/test/test_digikey.py index 4961a9d..cc7dfc7 100644 --- a/test/test_digikey.py +++ b/test/test_digikey.py @@ -48,7 +48,7 @@ def test_digikey_1(tmpdir): @pytest.mark.digikey def test_digikey_2(): - content = client.product_search("TCR2LF", page_size=500) + content = client.product_search("TCR2LF") res = parser.parse_string(client.baseurl, content) assert res.response_type == dk.SearchResponseTypes.MANY |