Skip to content

Commit

Permalink
Bugfix test_cli.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tjstruck committed Jan 16, 2025
1 parent 24f782e commit 02dcae2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_simulate_dfe_args():
cache2d = "tests/example_data/cache_split_mig_2d.bpkl"
pdf1d = "lognormal"
pdf2d = "biv_lognormal"
ratio = 2
theta_ns = 2*1000
p0 = [1, 1.4, 0, 0.97, 0.02]
nomisid = False
output = "tests/test_results/simulate_cli_dfe_split_mig_mix_s_lognormal.fs"
Expand All @@ -158,8 +158,8 @@ def test_simulate_dfe_args():
pdf1d,
"--pdf2d",
pdf2d,
"--ratio",
str(ratio),
"--theta-ns",
str(theta_ns),
"--p0",
"1", "1.4", "0", "0.97", "0.02",
"--output",
Expand All @@ -171,7 +171,7 @@ def test_simulate_dfe_args():
assert args.cache2d == cache2d
assert args.pdf1d == pdf1d
assert args.pdf2d == pdf2d
assert args.ratio == ratio
assert args.theta_ns == theta_ns
assert args.p0 == p0
assert args.nomisid == nomisid
assert args.output == output
Expand Down

0 comments on commit 02dcae2

Please sign in to comment.