Skip to content
Snippets Groups Projects
Unverified Commit 1e55a245 authored by Stefano Borini's avatar Stefano Borini Committed by GitHub
Browse files

Merge pull request #121 from force-h2020/rename-kpi-to-is-kpi

Renamed kpi to is_kpi
parents 1c9eb65f 87da2e1f
No related branches found
No related tags found
No related merge requests found
...@@ -16,4 +16,4 @@ class OutputSlotInfo(HasStrictTraits): ...@@ -16,4 +16,4 @@ class OutputSlotInfo(HasStrictTraits):
#: True if the value associated to this output slot must be exported as #: True if the value associated to this output slot must be exported as
#: a KPI. #: a KPI.
kpi = Bool(False) is_kpi = Bool(False)
...@@ -61,12 +61,12 @@ class TestBaseDataSourceModel(unittest.TestCase): ...@@ -61,12 +61,12 @@ class TestBaseDataSourceModel(unittest.TestCase):
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "baz", "name": "baz",
"kpi": False "is_kpi": False
}, },
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "quux", "name": "quux",
"kpi": False "is_kpi": False
} }
] ]
}) })
...@@ -56,12 +56,12 @@ class TestBaseKPICalculatorModel(unittest.TestCase): ...@@ -56,12 +56,12 @@ class TestBaseKPICalculatorModel(unittest.TestCase):
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "baz", "name": "baz",
"kpi": False, "is_kpi": False,
}, },
{ {
"__traits_version__": "4.6.0", "__traits_version__": "4.6.0",
"name": "quux", "name": "quux",
"kpi": False, "is_kpi": False,
} }
] ]
}) })
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment