Skip to content

Commit

Permalink
Merge pull request #1221 from Quantipy/i1220-bugfix_test_engine
Browse files Browse the repository at this point in the history
bugfix in test engine
  • Loading branch information
nitsrek authored Feb 7, 2019
2 parents 15f8a97 + 495fa44 commit b45ae78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantipy/core/quantify/engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1750,7 +1750,7 @@ def _set_baseline_aggregates(self, view):
self.values = self.values[:, 1:]
self.cbases = self.cbases[:, 1:]
elif self.metric == 'proportions':
if not self.test_total:
if not self.test_total or self.rebased:
if view.is_cumulative():
agg = self.Quantity.count(
margin=False, as_df=False, cum_sum=False)
Expand Down

0 comments on commit b45ae78

Please sign in to comment.