Skip to content

Commit

Permalink
[FIX] Unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander van Delft committed Jan 9, 2025
1 parent 4bd4696 commit 150ca18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public void VerifyDragIsNotAllowed()
{
Assert.That(firstItem, Is.Not.Null);
Assert.That(firstItem.InnerHtml, Contains.Substring("Test1"));
Assert.That(firstItem.Attributes.Length, Is.EqualTo(1));
Assert.That(firstItem.Attributes.Length, Is.EqualTo(2));
});
}

Expand All @@ -248,7 +248,7 @@ public void VerifyDragIsAllowed()
{
Assert.That(firstItem, Is.Not.Null);
Assert.That(firstItem.InnerHtml, Contains.Substring("Test1"));
Assert.That(firstItem.Attributes.Length, Is.EqualTo(9));
Assert.That(firstItem.Attributes.Length, Is.EqualTo(10));
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion COMETwebapp/appsettings.Development.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"ServerConfiguration": {
"ServerAddress": "http://localhost:5000/"
"ServerAddress": ""
},
"DetailedErrors": true
}

0 comments on commit 150ca18

Please sign in to comment.