Skip to content

Commit

Permalink
Updated test to validate that not throws any exception
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jmartinezramirez committed Jul 18, 2024
1 parent 9dead63 commit fbfa8d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Snowflake.Data.Tests/UnitTests/SFDbCommandTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public void TestCommandExecuteAsyncThrowsExceptionWhenCommandTextIsNotSet()
}

[Test]
public void TestCommandPrepareThrowsNotImplemented()
public void TestCommandPrepareShouldNotThrowsException()
{
Assert.Throws<NotImplementedException>(() => command.Prepare());
Assert.DoesNotThrow(() => command.Prepare());
}
}
}

0 comments on commit fbfa8d6

Please sign in to comment.