diff --git a/README.rst b/README.rst index 9a4d066..b788121 100644 --- a/README.rst +++ b/README.rst @@ -19,7 +19,7 @@ Tests can be run individually. Copy code found in each *boardtest_.py* mod Alternatively, tests can be imported as modules. Copy the desired test file to CIRCUITPYTHON device drive and import the test in your own code. Each test can be run with the ``run_test(pins)`` function. -The *boardtest_suite.py* (in *examples/*) shows how to call tests from within a script. *boardtest_suite.py* runs the following tests: +The *boardtest_simpletest.py* (in *examples/*) shows how to call tests from within a script. *boardtest_simpletest.py* runs the following tests: * LED Test * GPIO Test diff --git a/docs/examples.rst b/docs/examples.rst index 16da85c..c6e375d 100644 --- a/docs/examples.rst +++ b/docs/examples.rst @@ -3,6 +3,6 @@ Test Suite Run through several tests at once. -.. literalinclude:: ../examples/boardtest_suite.py - :caption: examples/boardtest_suite.py +.. literalinclude:: ../examples/boardtest_simpletest.py + :caption: examples/boardtest_simpletest.py :linenos: diff --git a/examples/boardtest_suite.py b/examples/boardtest_simpletest.py similarity index 100% rename from examples/boardtest_suite.py rename to examples/boardtest_simpletest.py