Skip to content

Commit

Permalink
error in rng.random conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed May 27, 2024
1 parent 102c5b7 commit 08877bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/input/test_data_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


def test_create_processor():
df = pd.DataFrame(rng.random(10, 3), columns=["X", "Y", "Z"])
df = pd.DataFrame(rng.random(size=(10, 3)), columns=["X", "Y", "Z"])
df["name"] = ["unit_{}".format(name % 2) for name in range(10)]
stratigraphic_order = [("sg", ["unit_0", "unit_1"])]
thicknesses = {"unit_0": 1.0, "unit_1": 0.5}
Expand Down

0 comments on commit 08877bf

Please sign in to comment.