Skip to content

Commit d2eb353

Browse files
committed
Fix test
1 parent 08ea02d commit d2eb353

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/libraries/System.Runtime.InteropServices/tests/LibraryImportGenerator.UnitTests/ConvertToLibraryImportFixerTests.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -519,23 +519,23 @@ partial class Enclosing
519519
{
520520
partial class Test
521521
{
522-
[GeneratedDllImport(""DoesNotExist"")]
522+
[LibraryImport(""DoesNotExist"")]
523523
public static partial int {|CS8795:Method|}(out int ret);
524-
[GeneratedDllImport(""DoesNotExist"")]
524+
[LibraryImport(""DoesNotExist"")]
525525
public static partial int {|CS8795:Method2|}(out int ret);
526-
[GeneratedDllImport(""DoesNotExist"")]
526+
[LibraryImport(""DoesNotExist"")]
527527
public static partial int {|CS8795:Method3|}(out int ret);
528528
}
529529
}
530530
partial class EnclosingPartial
531531
{
532532
partial class Test
533533
{
534-
[GeneratedDllImport(""DoesNotExist"")]
534+
[LibraryImport(""DoesNotExist"")]
535535
public static partial int {|CS8795:Method|}(out int ret);
536-
[GeneratedDllImport(""DoesNotExist"")]
536+
[LibraryImport(""DoesNotExist"")]
537537
public static partial int {|CS8795:Method2|}(out int ret);
538-
[GeneratedDllImport(""DoesNotExist"")]
538+
[LibraryImport(""DoesNotExist"")]
539539
public static partial int {|CS8795:Method3|}(out int ret);
540540
}
541541
}";

0 commit comments

Comments
 (0)