fixed case sensitive dir name in test data

GitOrigin-RevId: 44f223ed087eaec0820a2f11d5fd628538b7137a
This commit is contained in:
Aleksei Kniazev
2019-10-02 12:57:42 +03:00
committed by intellij-monorepo-bot
parent 362886ab2b
commit d76fed8eba
5 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
def bar_func():
pass

View File

@@ -0,0 +1,2 @@
def baz_func():
pass

View File

@@ -0,0 +1,5 @@
from foo.baz import baz_func
from .bar import bar_func
if __name__ == '__main__':
pass

View File

@@ -0,0 +1,4 @@
from .bar import bar_func
if __name__ == '__main__':
pass