Skip to content

Commit f150d28

Browse files
🎨
1 parent 81e5474 commit f150d28

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Lite3DotNet.Tests/TypeQueryTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void Can_get_array_types_when_nested()
8787
// Append to nested array
8888
context
8989
.ArrayAppendLong(arrayOffset, 1)
90-
.ArrayAppendObject(arrayOffset, out var nestedObjectOffset)
90+
.ArrayAppendObject(arrayOffset, out _)
9191
.ArrayAppendString(arrayOffset, "test"u8);
9292

9393
// Test type queries on nested array
@@ -105,7 +105,7 @@ public void Can_get_root_type_with_context_API()
105105
// Test object root
106106
var context = Lite3Context.Create();
107107

108-
using (var scope = context.BeginScope())
108+
using (context.BeginScope())
109109
{
110110
context.InitializeObject();
111111

@@ -115,7 +115,7 @@ public void Can_get_root_type_with_context_API()
115115
// Test array root
116116
context = Lite3Context.Create();
117117

118-
using (var scope = context.BeginScope())
118+
using (context.BeginScope())
119119
{
120120
context.InitializeArray();
121121

0 commit comments

Comments
 (0)