Skip to content

Commit 7b587ba

Browse files
committed
Corrected an issue where the incorrect public class was imported for the DoctestTestRunner // Resolve platformio#4949
1 parent 9eb6e51 commit 7b587ba

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

HISTORY.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ test-driven methodologies, and modern toolchains for unrivaled success.
2121
6.1.16 (2024-??-??)
2222
~~~~~~~~~~~~~~~~~~~
2323

24+
* Corrected an issue where the incorrect public class was imported for the ``DoctestTestRunner`` (`issue #4949 <https://github.com/platformio/platformio-core/issues/4949>`_)
25+
2426
6.1.15 (2024-04-25)
2527
~~~~~~~~~~~~~~~~~~~
2628

docs

platformio/public.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
from platformio.project.options import get_config_options_schema
2424
from platformio.test.result import TestCase, TestCaseSource, TestStatus
2525
from platformio.test.runners.base import TestRunnerBase
26-
from platformio.test.runners.doctest import DoctestTestCaseParser
26+
from platformio.test.runners.doctest import DoctestTestRunner
2727
from platformio.test.runners.googletest import GoogletestTestRunner
2828
from platformio.test.runners.unity import UnityTestRunner
2929
from platformio.util import get_systype

0 commit comments

Comments
 (0)