Skip to content

Commit

Permalink
Use expected, actual order for PXE template test
Browse files Browse the repository at this point in the history
Does what it says.

Change-Id: Ie1399c833ccfd3efcbcbd3d9823517a90fa807ba
  • Loading branch information
jimrollenhagen committed Sep 9, 2014
1 parent 06fe92a commit b5bca4f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ironic/tests/test_pxe_utils.py
Expand Up @@ -75,7 +75,7 @@ def test__build_pxe_config(self):
expected_template = open(
'ironic/tests/drivers/pxe_config.template').read().rstrip()

self.assertEqual(rendered_template, unicode(expected_template))
self.assertEqual(unicode(expected_template), rendered_template)

def test__build_pxe_config_with_agent(self):

Expand Down

0 comments on commit b5bca4f

Please sign in to comment.