Skip to content

Commit 1ab0a56

Browse files
committed
fix client test
1 parent 1fb34b3 commit 1ab0a56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -773,14 +773,14 @@ def test_databag_string_stripping(sentry_init, capture_events, benchmark):
773773
def inner():
774774
del events[:]
775775
try:
776-
a = "A" * DEFAULT_MAX_VALUE_LENGTH * 100 # noqa
776+
a = "A" * DEFAULT_MAX_VALUE_LENGTH * 10 # noqa
777777
1 / 0
778778
except Exception:
779779
capture_exception()
780780

781781
(event,) = events
782782

783-
assert len(json.dumps(event)) < DEFAULT_MAX_VALUE_LENGTH * 100
783+
assert len(json.dumps(event)) < DEFAULT_MAX_VALUE_LENGTH * 10
784784

785785

786786
def test_databag_breadth_stripping(sentry_init, capture_events, benchmark):

0 commit comments

Comments
 (0)