Skip to content

Commit

Permalink
test: Update reactive tests to use new default generation names
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb committed Oct 28, 2022
1 parent 621539b commit 4006128
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions src/Uno.Extensions.Reactive.Tests/Generator/AssemblyInfo.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void NestedInheritingViewModel()
=> Assert.IsNotNull(GetBindable(typeof(NestedSubViewModel)));

private Type? GetBindable(Type vmType)
=> vmType.GetNestedType($"Bindable{vmType.Name}");
=> vmType.GetNestedType(vmType.Name.Contains("ViewModel") ? $"Bindable{vmType.Name}" : $"{vmType.Name}ViewModel");

private Type? GetBindable(string vmType)
{
Expand Down

0 comments on commit 4006128

Please sign in to comment.