diff options
author | Dmitry Tantsur <dtantsur@protonmail.com> | 2020-09-04 17:07:55 +0200 |
---|---|---|
committer | Dmitry Tantsur <dtantsur@protonmail.com> | 2020-09-04 17:10:41 +0200 |
commit | 9b75453339155fdcfd1196d5c39c87cca67ed473 (patch) | |
tree | 63a8821d78339bd28daed6bfdc1b2a29f716f9dc /ironic_python_agent | |
parent | e73b7220c4efc23f34dbac77c3778cf82a0b2f18 (diff) | |
download | ironic-python-agent-9b75453339155fdcfd1196d5c39c87cca67ed473.tar.gz |
Fix and run the correct functional tests job
Apparently, functional-py36 just runs unit tests.
Fix the test that has regressed in the meantime and make it voting
so that we don't regress again.
Change-Id: Id5efe89a12a00c27e6299380a51cdb840285d691
Diffstat (limited to 'ironic_python_agent')
-rw-r--r-- | ironic_python_agent/tests/functional/test_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ironic_python_agent/tests/functional/test_commands.py b/ironic_python_agent/tests/functional/test_commands.py index 235b47d5..c2b84cab 100644 --- a/ironic_python_agent/tests/functional/test_commands.py +++ b/ironic_python_agent/tests/functional/test_commands.py @@ -24,7 +24,7 @@ class TestCommands(base.FunctionalBase): different test runs. """ - node = {'uuid': '1', 'properties': {}} + node = {'uuid': '1', 'properties': {}, 'instance_info': {}} def step_1_get_empty_commands(self): response = self.request('get', 'commands') |