Skip to content
Snippets Groups Projects
Commit 28c400bf authored by Rafael Ostertag's avatar Rafael Ostertag
Browse files

Use integer as version in test fixtures.

parent b73e2102
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ import managementhost.restmodules
class Dummy(managementhost.RestModule):
def __init__(self):
super(Dummy, self).__init__('Dummy', 'dummy', '0.2')
super(Dummy, self).__init__('Dummy', 'dummy', 2)
def initialize():
......
......@@ -7,7 +7,7 @@ import json
class Dummy2(managementhost.RestModule):
def __init__(self):
super(Dummy2, self).__init__('Dummy2', 'dummy2', '0.2')
super(Dummy2, self).__init__('Dummy2', 'dummy2', 3)
self.test_data = dict()
......
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