Skip to content

Commit

Permalink
give default None value to platform_asic (#7606)
Browse files Browse the repository at this point in the history
  • Loading branch information
XuChen-MSFT authored Mar 1, 2023
1 parent ba99b5a commit e5742c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/saitests/py3/sai_base_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def setUp(self):
self.server = self.test_params['server']
else:
self.server = 'localhost'
self.platform_asic = self.test_params['platform_asic']
self.platform_asic = self.test_params.get('platform_asic', None)

self.asic_id = self.test_params['asic_id']
if "port_map" in self.test_params:
Expand Down

0 comments on commit e5742c1

Please sign in to comment.