Skip to content

Commit

Permalink
fix broken test (by adding ChannelList as a default properties)
Browse files Browse the repository at this point in the history
  • Loading branch information
atsushieno committed Apr 25, 2024
1 parent 5d9c87f commit a49eff0
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ class PropertyFacadesTest {
// test get property
val conn = device1.connections[device2.muid]
assertNotNull(conn)
// It should contain `DeviceInfo`, `JSONSchema`, and `X-01` (may increase along with other predefined resources)
assertEquals(3, conn.propertyClient.properties.getMetadataList()!!.size, "client MetadataList size")
// It should contain `DeviceInfo`, `ChannelList`, `JSONSchema`, and `X-01` (may increase along with other predefined resources)
assertEquals(4, conn.propertyClient.properties.getMetadataList()!!.size, "client MetadataList size")

val client = conn.propertyClient

Expand Down

0 comments on commit a49eff0

Please sign in to comment.