Skip to content

Commit

Permalink
Remove obsolete check for removed example
Browse files Browse the repository at this point in the history
  • Loading branch information
simnh committed Jun 18, 2019
1 parent 20f639b commit 32d7021
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@ def test_example_datapackage_readability():
"oemof.tabular", "examples/datapackages"
):

if example != "lopf":
print("Runnig reading datapackage example {} ...".format(example))
systems.append(
ES.from_datapackage(
pkg.resource_filename(
"oemof.tabular",
"examples/datapackages/{}/datapackage.json".format(
example
),

print("Runnig reading datapackage example {} ...".format(example))
systems.append(
ES.from_datapackage(
pkg.resource_filename(
"oemof.tabular",
"examples/datapackages/{}/datapackage.json".format(
example
),
typemap=TYPEMAP,
)
),
typemap=TYPEMAP,
)
)

for system in systems:
assert type(system) is ES
Expand Down

0 comments on commit 32d7021

Please sign in to comment.