Skip to content

Commit

Permalink
Completed SystemTest for PolarizerEfficiencyAlgorithm
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufjimoh authored and peterfpeterson committed Dec 5, 2024
1 parent e6767f0 commit 2e2ab40
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ def input_filename(self):
@abstractmethod
def input_efficiency_filename(self):
"""
The filename to use as the input to the algorithm in this test.
:return: The input workspace's filename.
The filename to use as the input efficiency to the algorithm in this test.
:return: The input efficiency's filename.
"""
pass

Expand All @@ -51,6 +51,7 @@ class PolarizerEfficiencyPolarisedTest(PolarizerEfficiencyTestBase):

def __init__(self):
PolarizerEfficiencyTestBase.__init__(self)
self.nanEqual = True


class PolarizerEfficiencyUnpolarisedTest(PolarizerEfficiencyTestBase):
Expand All @@ -60,3 +61,4 @@ class PolarizerEfficiencyUnpolarisedTest(PolarizerEfficiencyTestBase):

def __init__(self):
PolarizerEfficiencyTestBase.__init__(self)
self.nanEqual = True

0 comments on commit 2e2ab40

Please sign in to comment.