vkagamlyk commented on code in PR #3257:
URL: https://github.com/apache/tinkerpop/pull/3257#discussion_r2476423145


##########
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Process/Traversal/DriverRemoteConnection/GraphTraversalTests.cs:
##########
@@ -330,7 +330,7 @@ public void shouldUseMaterializedPropertiesTokenInVP()
             {
                 Assert.NotNull(vp);
                 // GraphSON will deserialize into null and GraphBinary to []
-                Assert.True(vp.Properties == null || vp.Properties.Length == 
0);
+                Assert.True(vp.Properties.Length == 0);

Review Comment:
   nit: can be simplified to something like `Assert.Empty(vp.Properties)`, same 
below



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to