We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c680be0 commit e7ce9afCopy full SHA for e7ce9af
e2e/test/TwinE2ETests.cs
@@ -750,10 +750,7 @@ await deviceClient.UpdateReportedPropertiesAsync(new TwinCollection
750
Assert.IsTrue(serviceTwin.Properties.Reported.Contains(propName1));
751
String value1 = serviceTwin.Properties.Reported[propName1].ToString();
752
753
- // TODO: #243
754
- // If service team fixed the Issue #243 the following Assert.AreNotEqual should fail
755
- // and need to be changed to Assert.AreEqual
756
- Assert.AreNotEqual(value1, propEmptyValue);
+ Assert.AreEqual(value1, propEmptyValue);
757
758
await deviceClient.UpdateReportedPropertiesAsync(new TwinCollection
759
{
0 commit comments