axe-core-api 4.6.1 → 4.7.0.pre.3fef592

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4de751c5ce0b5ad1bf1ccbe3a0e566de4d77c51a719f759245f3fd5c98daa674
4
- data.tar.gz: 7bffcbf6c3c073b67765b7e1b6db5cfdfa0552cd65bcc7b7d9afb912c0b2b14d
3
+ metadata.gz: 184e8889d0e0267b547d795658a4821956bc829cb304faf5172a99721f1afba3
4
+ data.tar.gz: 6a85bd09134d066b0c6401147bd9c0ec967aebbd16d1cf62036ad56ccf366d11
5
5
  SHA512:
6
- metadata.gz: e19eb50e1d6c70ef25072a782c01f78e72bab01bd837a050528317ba591ef08776098754f8e85324d24667ecb211adb92cb6e6f0ddbc324a978f3f155c6276e7
7
- data.tar.gz: ebd5b971f2254fbc9613cb558092f96a3faf7ad26b5958b6577e014b9ac10865bb7a0b6cf11ef5dfd7088efee2cfd9613fcd7fc4c980a3b3c7250a7af0b00882
6
+ metadata.gz: fb3a6c1d3e8e098df050224426c2d4a78349997af9cc62a6f835a898be026a3ece34d9fa9ce67f1886774b35e4e3e0d85e932460356af9fd5c9e516a8704fe2e
7
+ data.tar.gz: 0c907651e2dff7d014571deb724ac1c6bed6fcd0cb8398dae61f3a1c9a97dd71ae164af04295dec80313dfa05afa340a68cd76ca72c1eaf12c75efdb137f5259
data/lib/axe/api/run.rb CHANGED
@@ -37,7 +37,7 @@ module Axe
37
37
  throw partial_results if partial_results.respond_to?("key?") and partial_results.key?("errorMessage")
38
38
  results = within_about_blank_context(page) { |page|
39
39
  partial_res_str = partial_results.to_json
40
- size_limit = 20_000_000
40
+ size_limit = 10_000_000
41
41
  while not partial_res_str.empty? do
42
42
  chunk_size = size_limit
43
43
  chunk_size = partial_res_str.length if chunk_size > partial_res_str.length