Skip to content

Commit

Permalink
fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdageek committed Apr 28, 2021
1 parent b8b1f09 commit 301ca01
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ public static void ApplyUpdateInvalidParameters()
}
}

[Fact]
public void GetApplyUpdateCapabilitiesIsCallable()
{
var ty = typeof(System.Reflection.Metadata.AssemblyExtensions);
var mi = ty.GetMethod ("GetApplyUpdateCapabilities", BindingFlags.NonPublic | BindingFlags.Static, Array.Empty<Type>());
[Fact]
public void GetApplyUpdateCapabilitiesIsCallable()
{
var ty = typeof(System.Reflection.Metadata.AssemblyExtensions);
var mi = ty.GetMethod("GetApplyUpdateCapabilities", BindingFlags.NonPublic | BindingFlags.Static, Array.Empty<Type>());

Assert.NotNull (mi);
Assert.NotNull(mi);

var result = mi.Invoke(null, null);
var result = mi.Invoke(null, null);

Assert.NotNull (result);
}
Assert.NotNull(result);
}
}
}

0 comments on commit 301ca01

Please sign in to comment.