Skip to content

Commit

Permalink
Test solution
Browse files Browse the repository at this point in the history
  • Loading branch information
crib authored and kbeaugrand committed Oct 28, 2022
1 parent 6a0ed35 commit 088effc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/AzureIoTHub.Portal.Domain/Entities/EdgeDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class EdgeDevice : EntityBase
public string DeviceModelId { get; set; }

public int Version { get; set; }

public string ConnectionState { get; set; }


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ public async Task GetEdgeDevicesCustomFilterReturnsExpectedDevices()
},
DeviceModelId = Fixture.Create<string>(),
Scope = Fixture.Create<string>(),
ConnectionState = Fixture.Create<string>(),
NbDevices = 1,
},
new EdgeDevice
Expand All @@ -141,6 +142,7 @@ public async Task GetEdgeDevicesCustomFilterReturnsExpectedDevices()
},
DeviceModelId = Fixture.Create<string>(),
Scope = Fixture.Create<string>(),
ConnectionState = Fixture.Create<string>(),
NbDevices = 1
}
};
Expand Down

0 comments on commit 088effc

Please sign in to comment.