Skip to content

Commit

Permalink
Move hist
Browse files Browse the repository at this point in the history
  • Loading branch information
ecomodeller committed May 8, 2023
1 parent 497813c commit 5f6eb6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/test_observation_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ def test_from_df(klagshamn):

def test_hist(klagshamn):
o1 = PointObservation(klagshamn, item=0, x=366844, y=6154291, name="Klagshamn1")
o1.hist()
o1.hist(density=False)
o1.hist(bins=20, title="new_title", color="red")
o1.plot.hist()
o1.plot.hist(density=False)
o1.plot.hist(bins=20, title="new_title", color="red")


def test_force_keyword_args(klagshamn):
Expand Down
4 changes: 2 additions & 2 deletions tests/test_observation_track.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def test_trackobservation_item_csv():

def test_hist(c2):
o1 = TrackObservation(c2, item=2)
o1.hist()
o1.plot.hist()

o1.hist(bins=20, title="new_title", color="red")
o1.plot.hist(bins=20, title="new_title", color="red")


def test_trackobservation_x_y_item(c2):
Expand Down

0 comments on commit 5f6eb6a

Please sign in to comment.