Skip to content

Commit

Permalink
#617 fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rtimms committed Oct 15, 2019
1 parent 76a8292 commit 8bc32b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_meshes/test_scikit_fem_submesh.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def test_tab_left_right(self):
class TestScikitFiniteElementChebyshev2DSubMesh(unittest.TestCase):
def test_mesh_creation(self):
param = pybamm.ParameterValues(
base_parameters={
values={
"Electrode width [m]": 0.4,
"Electrode height [m]": 0.5,
"Negative tab width [m]": 0.1,
Expand Down Expand Up @@ -260,7 +260,7 @@ def test_init_failure(self):
class TestScikitExponential2DSubMesh(unittest.TestCase):
def test_mesh_creation(self):
param = pybamm.ParameterValues(
base_parameters={
values={
"Electrode width [m]": 0.4,
"Electrode height [m]": 0.5,
"Negative tab width [m]": 0.1,
Expand Down Expand Up @@ -344,7 +344,7 @@ def test_init_failure(self):
class TestScikitUser2DSubMesh(unittest.TestCase):
def test_mesh_creation(self):
param = pybamm.ParameterValues(
base_parameters={
values={
"Electrode width [m]": 0.4,
"Electrode height [m]": 0.5,
"Negative tab width [m]": 0.1,
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/test_spatial_methods/test_scikit_finite_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def test_manufactured_solution(self):

def test_manufactured_solution_cheb_grid(self):
param = pybamm.ParameterValues(
base_parameters={
values={
"Electrode width [m]": 1,
"Electrode height [m]": 1,
"Negative tab width [m]": 1,
Expand Down Expand Up @@ -260,7 +260,7 @@ def test_manufactured_solution_cheb_grid(self):

def test_manufactured_solution_exponential_grid(self):
param = pybamm.ParameterValues(
base_parameters={
values={
"Electrode width [m]": 1,
"Electrode height [m]": 1,
"Negative tab width [m]": 1,
Expand Down

0 comments on commit 8bc32b7

Please sign in to comment.