Skip to content
Snippets Groups Projects
Commit 994ef46c authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #4083 apparently I have a newer unittest version

parent 017d71fc
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ class MDHistoWorkspaceTest(unittest.TestCase):
A = mtd['A']
B = mtd['B']
C = (A + B) / (A - B)
self.assertIsNotNone( C )
assert (C is not None)
""" boolean_workspace = MDHistoWorkspace < MDHistoWorkspace """
def test_comparisons_and_boolean_operations(self):
......@@ -123,7 +123,7 @@ class MDHistoWorkspaceTest(unittest.TestCase):
A = mtd['A']
B = mtd['B']
C = (A > B) & (A > 123) & (B < 2345)
self.assertIsNotNone( C )
assert (C is not None)
def test_compound_boolean_operations(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment