Skip to content

Commit

Permalink
change lifespan test to get rid of the deprecation warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
imbilltucker committed May 14, 2018
1 parent c6a51fa commit 642fd17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_lifespan.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def test_ticks_seen(self):
assert self.df.steps.max() == 1

def test_agent_lifetime(self):
lifetimes = self.df.groupby(["AgentID"]).Step.agg({"Step":
lifetimes = self.df.groupby(["AgentID"]).agg({"Step":
lambda x: len(x)})
assert lifetimes.Step.max() == 2

Expand Down

0 comments on commit 642fd17

Please sign in to comment.