Skip to content

Commit

Permalink
remove unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Aug 22, 2023
1 parent 3bee8df commit e1bfb69
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions src/python_testing/TC_ICDM_2_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#

import ipaddress
from datetime import timedelta

import chip.clusters as Clusters
from chip.clusters.Types import NullValue
from matter_testing_support import MatterBaseTest, async_test_body, default_matter_test_main
from mobly import asserts

Expand Down Expand Up @@ -78,15 +73,15 @@ async def test_TC_ICDM_2_1(self):
if (self.check_pics("ICDM.S.A0003")):
self.print_step(2, "Read RegisteredClients Attribute")

registeredClients = await self.read_icdm_attribute_expect_success(endpoint=endpoint,
attribute=attributes.RegisteredClients)
await self.read_icdm_attribute_expect_success(endpoint=endpoint,
attribute=attributes.RegisteredClients)

# ICDCounter attribute test
if (self.check_pics("ICDM.S.A0003")):
self.print_step(2, "Read ICDCounter Attribute")

icdCounter = await self.read_icdm_attribute_expect_success(endpoint=endpoint,
attribute=attributes.ICDCounter)
await self.read_icdm_attribute_expect_success(endpoint=endpoint,
attribute=attributes.ICDCounter)

# ClientsSupportedPerFabric attribute test
if (self.check_pics("ICDM.S.A0003")):
Expand Down

0 comments on commit e1bfb69

Please sign in to comment.