Skip to content

Commit

Permalink
Improve code
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Feb 15, 2024
1 parent 53bf540 commit 96a1f5b
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/TestRADL.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,6 @@ def test_contextualize_options(self):
self.assertEqual(r.contextualize.options['ansible_version'].getLogOperator(), '<=')

radl_json = dump_radl_json(r)
print(radl_json)
r = parse_radl_json(radl_json)
r.check()
self.assertEqual(len(r.contextualize.options), 1)
Expand All @@ -408,7 +407,6 @@ def test_empty_configure(self):
self.assertEqual(r.configures[0].recipes, None)

radl_json = dump_radl_json(r)
print(radl_json)
r = parse_radl_json(radl_json)
r.check()
self.assertEqual(r.configures[0].recipes, None)
Expand All @@ -424,7 +422,6 @@ def test_escape_quote(self):
self.assertEqual(r.systems[0].getValue("some_value"), "some ' some")

radl_json = dump_radl_json(r)
print(radl_json)
r = parse_radl_json(radl_json)
r.check()
self.assertEqual(r.systems[0].getValue("some_value"), "some ' some")
Expand Down

0 comments on commit 96a1f5b

Please sign in to comment.