Skip to content

Commit

Permalink
Trying to fix the Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinXPN authored May 16, 2024
1 parent 21b69ce commit 6a3029b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/coderunners/test_multi_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ def test_python(self):
'main.py': dedent('''
from dir.code import one
print(one() + one())
'''),
''').strip(),
'ones.py': dedent('''
def ret_one():
return 1
'''),
''').strip(),
'dir': {
'code.py': dedent('''
from ones import ret_one
def one():
return ret_one()
'''),
''').strip(),
},
}))

Expand Down

0 comments on commit 6a3029b

Please sign in to comment.