Compare commits

..

No commits in common. "80bcb5e14b5438b6c3697f541c7c2e564c65bf1d" and "4bc94e78e0a74d900b07d6b00a3215e8b689b3a7" have entirely different histories.

View File

@ -30,10 +30,7 @@ class CompensationQualityChecker(AbstractQualityChecker):
"""
after_states = self.obj.get_surface_after_states()
before_states = self.obj.get_surface_before_states()
sum_after_states_surface = self.obj.get_surface_after_states()
sum_before_states_surface = self.obj.get_surface_before_states()
if sum_after_states_surface != sum_before_states_surface:
if after_states != before_states:
self.messages.append(
_("States unequal")
)