From 9e156bc8e32cf882688b355136f0e42ff4fadea0 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sun, 19 Apr 2026 06:28:21 -0400 Subject: [PATCH] Fix typo in gas mixture --- src/mixtures/gas_mixture.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mixtures/gas_mixture.rs b/src/mixtures/gas_mixture.rs index 21990b0..9b9c26b 100644 --- a/src/mixtures/gas_mixture.rs +++ b/src/mixtures/gas_mixture.rs @@ -199,7 +199,7 @@ mod test { assert_vec_delta!(expected_ns, ns, 1e-12); assert_delta!(gas.nsum, 0.04997527057027948, 1e-12); - assert_delta!(gas.coefs.get(0, 0).unwrap(), 2.0, 1e-12); + assert_delta!(gas.coeffs.get(0, 0).unwrap(), 2.0, 1e-12); assert_delta!(gas.coeffs.get(0, 1).unwrap(), 0.0, 1e-12); assert_delta!(gas.coeffs.get(0, 2).unwrap(), 2.0, 1e-12); assert_delta!(gas.coeffs.get(1, 0).unwrap(), 0.0, 1e-12);