We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3169c7f + cd3e138 commit 281c706Copy full SHA for 281c706
pycompss/util/translators/py2pycompss/translator_py2pycompss.py
@@ -620,7 +620,7 @@ def test_multiply(self):
620
# Erase file
621
os.remove(out_file)
622
623
- def test_multiply_taskified(self):
+ def _test_multiply_taskified(self):
624
# Base variables
625
import os
626
dir_path = os.path.dirname(os.path.realpath(__file__))
@@ -657,7 +657,7 @@ def test_multiply_taskified(self):
657
with open(expected_file2, 'r') as f:
658
expected_content2 = f.read()
659
with open(expected_file3, 'r') as f:
660
- expected_content3 = f.read()
+ expected_content3 = f.read()
661
with open(out_file, 'r') as f:
662
out_content = f.read()
663
0 commit comments