Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
Cleaned up a few warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinHoward committed Aug 17, 2017
1 parent af583d5 commit 8fbafda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Expand Up @@ -304,7 +304,7 @@ public void AuthorUsesCases()
bool r6 = db.Scalar<Author, bool>(e => Sql.Max(e.Active));
Assert.AreEqual(expectedBool, r6);
}
catch (Exception e)
catch //(Exception e)
{
//????
//if (dialect.Name == "PostgreSQL")
Expand Down
2 changes: 1 addition & 1 deletion src/ServiceStack.OrmLite.SqlServerTests/SchemaTests.cs
Expand Up @@ -65,7 +65,7 @@ public void Can_replace_decimal_column()
{
db.DropAndCreateTable<TestDecimalConverter>();

Assert.That(db.GetLastSql(), Is.StringContaining("FLOAT"));
Assert.That(db.GetLastSql(), Does.Contain("FLOAT"));
}
}

Expand Down
Expand Up @@ -13,7 +13,7 @@ namespace ServiceStack.OrmLite.SqlServerTests
public class SqlServerExpressionVisitorQueryTest : OrmLiteTestBase
{
[OneTimeSetUp]
public void TestFixtureSetUp()
public override void TestFixtureSetUp()
{
OrmLiteConfig.SanitizeFieldNameForParamNameFn = s =>
(s ?? "").Replace(" ", "").Replace("°", "");
Expand Down

0 comments on commit 8fbafda

Please sign in to comment.