Skip to content

Commit

Permalink
net8 test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sm6srw committed Nov 29, 2023
1 parent 8b05ae3 commit 1a162cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Libraries/DynamoPythonTests/CodeCompletionTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void SharedCoreCanReturnCLRCompletionData()

Assert.IsTrue(completionList.Any());
Assert.IsTrue(completionList.Intersect(new[] { "Hashtable", "Queue", "Stack" }).Count() == 3);
Assert.IsTrue(completionData.Length == 31);
Assert.IsTrue(completionData.Length == 32);
}
}

Expand Down Expand Up @@ -236,7 +236,7 @@ public void CanImportSystemCollectionsLibraryAndGetCompletionData()

Assert.IsTrue(completionList.Any());
Assert.IsTrue(completionList.Intersect(new[] { "Hashtable", "Queue", "Stack" }).Count() == 3);
Assert.IsTrue(completionData.Length == 31);
Assert.IsTrue(completionData.Length == 32);
}

[Test]
Expand Down

0 comments on commit 1a162cd

Please sign in to comment.