From 87f011ff390e97b5ac2316be08f95550abe023b9 Mon Sep 17 00:00:00 2001 From: Sebastien Ros Date: Thu, 2 May 2013 11:24:24 -0700 Subject: [PATCH] Fixing Scale/Precision unit test Needed as NHibernate has fixed the related bug https://nhibernate.jira.com/browse/NH-2979 --HG-- branch : 1.x --- src/Orchard.Tests/DataMigration/SchemaBuilderTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Orchard.Tests/DataMigration/SchemaBuilderTests.cs b/src/Orchard.Tests/DataMigration/SchemaBuilderTests.cs index 4bec38d8d..b2971aca5 100644 --- a/src/Orchard.Tests/DataMigration/SchemaBuilderTests.cs +++ b/src/Orchard.Tests/DataMigration/SchemaBuilderTests.cs @@ -229,7 +229,7 @@ namespace Orchard.Tests.DataMigration { _schemaBuilder .CreateTable("Product", table => table - .Column("Price", DbType.Decimal, column => column.WithPrecision(6).WithScale(9)) + .Column("Price", DbType.Decimal, column => column.WithPrecision(19).WithScale(9)) ); _schemaBuilder