Skip to content

Commit

Permalink
addressing review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Arvindsrinivasan Lakshmi Narasimhan <arlakshm@microsoft.com>
  • Loading branch information
arlakshm committed Apr 19, 2020
1 parent 5b6892e commit 78a2bf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sonic-config-engine/tests/test_multinpu_cfggen.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ def test_hwsku(self):
def test_print_data(self):
argument = "-m \"{}\" --print-data".format(self.sample_graph)
output = self.run_script(argument)
self.assertTrue(len(output.strip()) > 0)
self.assertGreater(len(output.strip()) , 0)
for asic in range(NUM_ASIC):
output = self.run_script_for_asic(argument, asic)
self.assertTrue(len(output.strip()) > 0)
self.assertGreater(len(output.strip()) , 0)


def test_additional_json_data(self):
Expand Down

0 comments on commit 78a2bf7

Please sign in to comment.