removing 2 bugs from previous commit

This commit is contained in:
Claudio Zambaldi 2011-12-15 15:29:22 +00:00
parent a27a78bab1
commit fbfb39de3f
2 changed files with 1 additions and 8 deletions

View File

@ -1 +1 @@
from . import Material from .material import Material

View File

@ -84,9 +84,6 @@ class Test():
print('Could not delete current_results') print('Could not delete current_results')
os.mkdir('current_results') os.mkdir('current_results')
def copy_from_ref(self):
def calc_current_results(self): def calc_current_results(self):
''' '''
Should be defined in the individual tests Should be defined in the individual tests
@ -161,8 +158,4 @@ class Test():
print(cmd) print(cmd)
os.system(cmd) # PHILIP: reason is that for loops and the like get broken with line by line execution from here... os.system(cmd) # PHILIP: reason is that for loops and the like get broken with line by line execution from here...
if __name__ == "__main__":
test=DAMASK_TESTER()
test.run_test()