Skip to content

Commit

Permalink
Removed copycols argument when reading in dataframe. dataframe is now…
Browse files Browse the repository at this point in the history
… immutable
  • Loading branch information
Surluson committed Nov 19, 2019
1 parent d5d2038 commit 8593a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/misc_test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ using Random
@test isapprox(M, M_opt, rtol=1e-6)
@test isapprox(K, K_opt, rtol=1e-6)

df = CSV.read("Ni-MOF-74_isotherm_test.csv", copycols=true)
df = CSV.read("Ni-MOF-74_isotherm_test.csv")
x = fit_adsorption_isotherm(df, Symbol("P(bar)"), Symbol("mol_m3"), :langmuir)
M_opt, K_opt = x["M"], x["K"]
@test isapprox(M_opt, 8546.37534030619, atol=1e-5)
Expand Down

0 comments on commit 8593a25

Please sign in to comment.