Fix some roslyn tests

This commit is contained in:
PJB3005
2025-12-17 16:55:33 +01:00
parent e3fb7e620d
commit ddfa12808c
3 changed files with 2 additions and 4 deletions

View File

@@ -9,7 +9,6 @@ namespace Robust.Analyzers.Tests;
[Parallelizable(ParallelScope.All | ParallelScope.Fixtures)]
[TestFixture]
[TestOf(typeof(PrototypeInstantiationAnalyzer))]
[Ignore("guh")]
public sealed class PrototypeInstantiationAnalyzerTest
{
private static Task Verifier(string code, params DiagnosticResult[] expected)

View File

@@ -9,7 +9,6 @@ namespace Robust.Analyzers.Tests;
[Parallelizable(ParallelScope.All | ParallelScope.Fixtures)]
[TestFixture]
[TestOf(typeof(PrototypeNetSerializableAnalyzer))]
[Ignore("guh")]
public sealed class PrototypeNetSerializableAnalyzerTest
{
private static Task Verifier(string code, params DiagnosticResult[] expected)

View File

@@ -1,8 +1,8 @@
using System;
#if !ROBUST_ANALYZERS_TEST
using Robust.Shared.ViewVariables;
using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom;
using Robust.Shared.Serialization.TypeSerializers.Interfaces;
using Robust.Shared.ViewVariables;
#if !ROBUST_ANALYZERS_TEST
using JetBrains.Annotations;
#endif