Commit 6ce97f28 authored by Alexander Lercher's avatar Alexander Lercher

[Gateway] minor bugfix

parent 3966f9e5
...@@ -11,7 +11,8 @@ class Test_BlockchainTrace(unittest.TestCase): ...@@ -11,7 +11,8 @@ class Test_BlockchainTrace(unittest.TestCase):
def _get_min_valid_input(self): def _get_min_valid_input(self):
return { return {
"ApplicationType": "string" "ApplicationType": "string",
"docType": "string"
} }
def test_isBlockchainTraceValid_validInputAndTypes(self): def test_isBlockchainTraceValid_validInputAndTypes(self):
...@@ -25,6 +26,7 @@ class Test_BlockchainTrace(unittest.TestCase): ...@@ -25,6 +26,7 @@ class Test_BlockchainTrace(unittest.TestCase):
def test_isBlockchainTraceValid_additionalKeys(self): def test_isBlockchainTraceValid_additionalKeys(self):
input = { input = {
"ApplicationType": "string", "ApplicationType": "string",
"docType": "string",
"Metadata": {}, "Metadata": {},
"ResourceIds": "string", "ResourceIds": "string",
"ResourceMd5": "string", "ResourceMd5": "string",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment