diff --git a/test/python/test_kinetics.py b/test/python/test_kinetics.py index 7e9f79cf1c..44d91e3cc6 100644 --- a/test/python/test_kinetics.py +++ b/test/python/test_kinetics.py @@ -1069,10 +1069,10 @@ def test_interface_current(self): file = "lithium_ion_battery.yaml" # The 'elde' electrode phase is needed as a source/sink for electrons: - anode = ct.Solution(file,"anode") - elect = ct.Solution(file,"electron") - elyte = ct.Solution(file,"electrolyte") - anode_int = ct.Interface(file,"edge_anode_electrolyte",[anode,elect,elyte]) + anode = ct.Solution(file, "anode") + elect = ct.Solution(file, "electron") + elyte = ct.Solution(file, "electrolyte") + anode_int = ct.Interface(file, "edge_anode_electrolyte", [anode, elect, elyte]) anode.X = [0.9, 0.1] elyte.X = [0.4, 0.3, 0.15, 0.15]