From fbfb39de3fdb742d7e8a8c79ddd51c73aa33795b Mon Sep 17 00:00:00 2001 From: Claudio Zambaldi Date: Thu, 15 Dec 2011 15:29:22 +0000 Subject: [PATCH] removing 2 bugs from previous commit --- lib/damask/config/__init__.py | 2 +- lib/damask/test/test.py | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/damask/config/__init__.py b/lib/damask/config/__init__.py index 6267790f9..0e48106e7 100644 --- a/lib/damask/config/__init__.py +++ b/lib/damask/config/__init__.py @@ -1 +1 @@ -from . import Material +from .material import Material diff --git a/lib/damask/test/test.py b/lib/damask/test/test.py index d882953a4..7f94152a9 100644 --- a/lib/damask/test/test.py +++ b/lib/damask/test/test.py @@ -84,9 +84,6 @@ class Test(): print('Could not delete current_results') os.mkdir('current_results') - def copy_from_ref(self): - - def calc_current_results(self): ''' Should be defined in the individual tests @@ -161,8 +158,4 @@ class Test(): print(cmd) 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()