fix linting errors
Some checks failed
Some checks failed
This commit is contained in:
parent
bbfabb2eee
commit
7893bd7b15
@ -1,6 +1,6 @@
|
||||
namespace project_name.Tests;
|
||||
|
||||
using project_name;
|
||||
using project_name;
|
||||
|
||||
public class UnitTest1
|
||||
{
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
public class HelloWorldProvider
|
||||
{
|
||||
public string GetHelloWorld(string name = null)
|
||||
public string GetHelloWorld(string? name = null)
|
||||
{
|
||||
if(string.IsNullOrEmpty(name))
|
||||
if (string.IsNullOrEmpty(name))
|
||||
{
|
||||
return "Hello world!";
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user