Fix uppercase and lowercase check (#461)
This commit is contained in:
committed by
GitHub
parent
2c24e2fd28
commit
b75ea94f58
5
resources/test/fixtures/N811.py
vendored
5
resources/test/fixtures/N811.py
vendored
@@ -1,2 +1,3 @@
|
||||
import mod.SUBMOD as submod
|
||||
from mod import BAD as bad
|
||||
import mod.CONST as const
|
||||
from mod import CONSTANT as constant
|
||||
from mod import ANOTHER_CONSTANT as another_constant
|
||||
|
||||
5
resources/test/fixtures/N812.py
vendored
5
resources/test/fixtures/N812.py
vendored
@@ -1,2 +1,3 @@
|
||||
import mod.submod as SubMod
|
||||
from mod import bad as Bad
|
||||
import modl.lowercase as Lower
|
||||
from mod import lowercase as Lowercase
|
||||
from mod import another_lowercase as AnotherLowercase
|
||||
|
||||
3
resources/test/fixtures/N813.py
vendored
3
resources/test/fixtures/N813.py
vendored
@@ -1,2 +1,3 @@
|
||||
import mod.SubMod as submod
|
||||
import mod.Camel as camel
|
||||
from mod import CamelCase as camelcase
|
||||
from mod import AnotherCamelCase as another_camelcase
|
||||
|
||||
3
resources/test/fixtures/N814.py
vendored
3
resources/test/fixtures/N814.py
vendored
@@ -1,2 +1,3 @@
|
||||
import mod.SubMod as SUBMOD
|
||||
import mod.Camel as CAMEL
|
||||
from mod import CamelCase as CAMELCASE
|
||||
from mod import AnotherCamelCase as ANOTHER_CAMELCASE
|
||||
|
||||
2
resources/test/fixtures/N817.py
vendored
2
resources/test/fixtures/N817.py
vendored
@@ -1,2 +1,2 @@
|
||||
import mod.SubMod as SM
|
||||
import mod.CaMel as CM
|
||||
from mod import CamelCase as CC
|
||||
|
||||
Reference in New Issue
Block a user