Skip to content

Commit

Permalink
Update test_tpt_reports.py to include pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nickviola committed Aug 7, 2023
1 parent 45a2f96 commit 635ce1a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_tpt_reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
from unittest.mock import patch

# Third-Party Libraries
import tpt_reports
import pytest

# cisagov Libraries
import tpt_reports

div_params = [
(1, 1, 1),
(2, 2, 1),
Expand Down Expand Up @@ -51,7 +53,7 @@ def test_running_as_module(capsys):
# being done by __main__ is importing the main entrypoint of the
# package and running it, so there is nothing to use from this
# import. As a result, we can safely ignore this warning.
# Third-Party Libraries
# cisagov Libraries
import tpt_reports.__main__ # noqa: F401
captured = capsys.readouterr()
assert (
Expand Down

0 comments on commit 635ce1a

Please sign in to comment.