Skip to content

Commit b08fd68

Browse files
committed
Fix test min boundary
1 parent 12ff2a3 commit b08fd68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_workspace.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_get_workspaces__too_old_since_value(
9292
argnames="workspace_name, error_message",
9393
argvalues=(
9494
("", "String should have at least 1 character"),
95-
(fake.pystr(min_chars=140, max_chars=200), "String should have at most 140 character"),
95+
(fake.pystr(min_chars=141, max_chars=200), "String should have at most 140 character"),
9696
),
9797
)
9898
def test_update__invalid_workspace_name(

0 commit comments

Comments
 (0)