Skip to content

Commit

Permalink
tests: updating processor test
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlangrose committed Nov 18, 2024
1 parent e508d2d commit 4a25702
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 @@ -7,7 +7,7 @@
def test_create_processor():
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"])]
stratigraphic_order = [("sg", ["unit_0", "unit_1", "basement"])]
thicknesses = {"unit_0": 1.0, "unit_1": 0.5}
processor = ProcessInputData(
contacts=df, stratigraphic_order=stratigraphic_order, thicknesses=thicknesses
Expand Down

0 comments on commit 4a25702

Please sign in to comment.