Skip to content

Commit

Permalink
ferran comments
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinsulzer committed Nov 4, 2021
1 parent 90111ee commit bfd4df3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#
# Tests for the lithium-ion SPM model
# Tests for the half-cell lithium-ion SPM model
#
import pybamm
import tests

import unittest


class TestSPM(unittest.TestCase):
class TestSPMHalfCell(unittest.TestCase):
def test_basic_processing(self):
options = {"working electrode": "positive"}
model = pybamm.lithium_ion.SPM(options)
Expand All @@ -16,7 +16,7 @@ def test_basic_processing(self):
modeltest.test_all(skip_output_tests=True)


class TestSPMWithSEI(unittest.TestCase):
class TestSPMHalfCellWithSEI(unittest.TestCase):
def test_well_posed_constant(self):
options = {"working electrode": "positive", "SEI": "constant"}
model = pybamm.lithium_ion.SPM(options)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#
# Tests for the lithium-ion SPMe model
# Tests for the half-cell lithium-ion SPMe model
#
import pybamm
import tests

import unittest


class TestSPMe(unittest.TestCase):
class TestSPMeHalfCell(unittest.TestCase):
def test_basic_processing(self):
options = {"working electrode": "positive"}
model = pybamm.lithium_ion.SPMe(options)
Expand All @@ -16,7 +16,7 @@ def test_basic_processing(self):
modeltest.test_all(skip_output_tests=True)


class TestSPMeWithSEI(unittest.TestCase):
class TestSPMeHalfCellWithSEI(unittest.TestCase):
def test_well_posed_constant(self):
options = {"working electrode": "positive", "SEI": "constant"}
model = pybamm.lithium_ion.SPMe(options)
Expand Down

0 comments on commit bfd4df3

Please sign in to comment.