From 045566984b013e9fc92aa0a950bf4b2bfd505fd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Kolbu?= Date: Fri, 27 Jan 2023 11:16:23 +0100 Subject: [PATCH] (testing) Fix typo in string --- tests/test_api_longtests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_api_longtests.py b/tests/test_api_longtests.py index 8fcd9db..d8a0c4b 100644 --- a/tests/test_api_longtests.py +++ b/tests/test_api_longtests.py @@ -43,6 +43,6 @@ def test_list_issue(instance): org = Organization.request(instance, test_org) repo = instance.create_repo(org, test_repo, "Testing a huge number of Issues and how they are listed") for x in range(0, 100): - Issue.create_issue(instance, repo, "TestIssue" + str(x), "We will be to many to be listed on one page") + Issue.create_issue(instance, repo, "TestIssue" + str(x), "We will be too many to be listed on one page") issues = repo.get_issues() - assert len(issues) > 98 \ No newline at end of file + assert len(issues) > 98