Skip to content

Commit

Permalink
Fix analyzer test after internal type was moved (#22638)
Browse files Browse the repository at this point in the history
Introduced by #22596
  • Loading branch information
roji authored Sep 21, 2020
1 parent 3199752 commit dd5cf0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@

using System;
using Microsoft.EntityFrameworkCore.Diagnostics;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Utilities;
using Microsoft.Extensions.DependencyInjection;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ public Task Invocation_on_type_in_internal_namespace()
[ConditionalFact]
public Task Instantiation_on_type_in_internal_namespace()
=> Test(
"new CoreSingletonOptions();",
"Microsoft.EntityFrameworkCore.Internal.CoreSingletonOptions",
"CoreSingletonOptions");
"new Microsoft.EntityFrameworkCore.Infrastructure.Internal.CoreSingletonOptions();",
"Microsoft.EntityFrameworkCore.Infrastructure.Internal.CoreSingletonOptions",
"Microsoft.EntityFrameworkCore.Infrastructure.Internal.CoreSingletonOptions");

[ConditionalFact]
public async Task Base_type()
Expand Down

0 comments on commit dd5cf0b

Please sign in to comment.