Skip to content

Commit e7ce9af

Browse files
committed
Change Twin E2E test beacause the Service Bug was fixed
1 parent c680be0 commit e7ce9af

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

e2e/test/TwinE2ETests.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -750,10 +750,7 @@ await deviceClient.UpdateReportedPropertiesAsync(new TwinCollection
750750
Assert.IsTrue(serviceTwin.Properties.Reported.Contains(propName1));
751751
String value1 = serviceTwin.Properties.Reported[propName1].ToString();
752752

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);
753+
Assert.AreEqual(value1, propEmptyValue);
757754

758755
await deviceClient.UpdateReportedPropertiesAsync(new TwinCollection
759756
{

0 commit comments

Comments
 (0)