@@ -27,7 +27,7 @@ def test_planning(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
2727 )
2828 out , err = capfd .readouterr ()
2929 assert not err
30- assert out == "✔ Setting development status to '1 - Planning'.\n "
30+ assert out == "✔ Setting the development status to '1 - Planning'.\n "
3131
3232 def test_planning_code (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
3333 # Arrange
@@ -48,7 +48,7 @@ def test_planning_code(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str
4848 )
4949 out , err = capfd .readouterr ()
5050 assert not err
51- assert out == "✔ Setting development status to '1 - Planning'.\n "
51+ assert out == "✔ Setting the development status to '1 - Planning'.\n "
5252
5353 def test_prealpha (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
5454 # Arrange
@@ -69,7 +69,7 @@ def test_prealpha(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
6969 )
7070 out , err = capfd .readouterr ()
7171 assert not err
72- assert out == "✔ Setting development status to '2 - Pre-Alpha'.\n "
72+ assert out == "✔ Setting the development status to '2 - Pre-Alpha'.\n "
7373
7474 def test_alpha (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
7575 # Arrange
@@ -88,7 +88,7 @@ def test_alpha(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
8888 assert "Development Status :: 3 - Alpha" in mgr [["project" , "classifiers" ]]
8989 out , err = capfd .readouterr ()
9090 assert not err
91- assert out == "✔ Setting development status to '3 - Alpha'.\n "
91+ assert out == "✔ Setting the development status to '3 - Alpha'.\n "
9292
9393 def test_beta (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
9494 # Arrange
@@ -107,7 +107,7 @@ def test_beta(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
107107 assert "Development Status :: 4 - Beta" in mgr [["project" , "classifiers" ]]
108108 out , err = capfd .readouterr ()
109109 assert not err
110- assert out == "✔ Setting development status to '4 - Beta'.\n "
110+ assert out == "✔ Setting the development status to '4 - Beta'.\n "
111111
112112 def test_production (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
113113 # Arrange
@@ -129,7 +129,7 @@ def test_production(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
129129 )
130130 out , err = capfd .readouterr ()
131131 assert not err
132- assert out == "✔ Setting development status to '5 - Production/Stable'.\n "
132+ assert out == "✔ Setting the development status to '5 - Production/Stable'.\n "
133133
134134 def test_mature (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
135135 # Arrange
@@ -148,7 +148,7 @@ def test_mature(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
148148 assert "Development Status :: 6 - Mature" in mgr [["project" , "classifiers" ]]
149149 out , err = capfd .readouterr ()
150150 assert not err
151- assert out == "✔ Setting development status to '6 - Mature'.\n "
151+ assert out == "✔ Setting the development status to '6 - Mature'.\n "
152152
153153 def test_inactive (self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]):
154154 # Arrange
@@ -169,7 +169,7 @@ def test_inactive(self, uv_init_dir: Path, capfd: pytest.CaptureFixture[str]):
169169 )
170170 out , err = capfd .readouterr ()
171171 assert not err
172- assert out == "✔ Setting development status to '7 - Inactive'.\n "
172+ assert out == "✔ Setting the development status to '7 - Inactive'.\n "
173173
174174 def test_no_pyproject_toml (self , tmp_path : Path , capfd : pytest .CaptureFixture [str ]):
175175 # Arrange
@@ -184,7 +184,7 @@ def test_no_pyproject_toml(self, tmp_path: Path, capfd: pytest.CaptureFixture[st
184184 assert not err
185185 assert out == (
186186 "✔ Writing 'pyproject.toml'.\n "
187- "✔ Setting development status to '1 - Planning'.\n "
187+ "✔ Setting the development status to '1 - Planning'.\n "
188188 )
189189
190190 def test_replace_existing_classifier (
@@ -219,7 +219,7 @@ def test_replace_existing_classifier(
219219 )
220220 out , err = capfd .readouterr ()
221221 assert not err
222- assert out == "✔ Setting development status to '4 - Beta'.\n "
222+ assert out == "✔ Setting the development status to '4 - Beta'.\n "
223223
224224 def test_replace_multiple_existing_classifiers (
225225 self , uv_init_dir : Path , capfd : pytest .CaptureFixture [str ]
@@ -259,4 +259,4 @@ def test_replace_multiple_existing_classifiers(
259259 )
260260 out , err = capfd .readouterr ()
261261 assert not err
262- assert out == "✔ Setting development status to '5 - Production/Stable'.\n "
262+ assert out == "✔ Setting the development status to '5 - Production/Stable'.\n "
0 commit comments