Skip to content

Commit 8f1ecbd

Browse files
committed
Increase len(my_user_attr) limit to 8000.
1 parent 8974c60 commit 8f1ecbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/mlflow/test_mlflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ def test_tag_truncation(tmpdir: py.path.local) -> None:
235235
first_run_dict = first_run.to_dictionary()
236236

237237
my_user_attr = first_run_dict["data"]["tags"]["my_user_attr"]
238-
assert len(my_user_attr) <= 5000
238+
assert len(my_user_attr) <= 8000
239239

240240

241241
def test_nest_trials(tmpdir: py.path.local) -> None:

0 commit comments

Comments
 (0)