Skip to content

Commit

Permalink
fix: remove tests/yamllint_plugin_example/tests/common.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ssato committed Oct 31, 2020
1 parent 09e6530 commit b81be25
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 72 deletions.
71 changes: 0 additions & 71 deletions tests/yamllint_plugin_example/tests/common.py

This file was deleted.

6 changes: 5 additions & 1 deletion tests/yamllint_plugin_example/tests/plugins_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
mock = False

import yamllint.rules
from .common import RuleTestCase

try:
from ...common import RuleTestCase
except ImportError:
from .common import RuleTestCase

try:
from ..rules import RULES
Expand Down

0 comments on commit b81be25

Please sign in to comment.