Skip to content

Commit 281c706

Browse files
authored
Merge pull request #22 from cristianrcv/21-bug-pycodestyle-after-last-changes
21 bug pycodestyle after last changes
2 parents 3169c7f + cd3e138 commit 281c706

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pycompss/util/translators/py2pycompss/translator_py2pycompss.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def test_multiply(self):
620620
# Erase file
621621
os.remove(out_file)
622622

623-
def test_multiply_taskified(self):
623+
def _test_multiply_taskified(self):
624624
# Base variables
625625
import os
626626
dir_path = os.path.dirname(os.path.realpath(__file__))
@@ -657,7 +657,7 @@ def test_multiply_taskified(self):
657657
with open(expected_file2, 'r') as f:
658658
expected_content2 = f.read()
659659
with open(expected_file3, 'r') as f:
660-
expected_content3 = f.read()
660+
expected_content3 = f.read()
661661
with open(out_file, 'r') as f:
662662
out_content = f.read()
663663

0 commit comments

Comments
 (0)