Skip to content

Commit

Permalink
⬆️ Update to SQLitePCLRaw 2.1.2 (#29434)
Browse files Browse the repository at this point in the history
  • Loading branch information
bricelam committed Nov 2, 2022
1 parent 89e7d72 commit 2e955f4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
<NetTopologySuitePackageVersion>2.0.0</NetTopologySuitePackageVersion>
<NetTopologySuiteIOSpatiaLitePackageVersion>2.0.0</NetTopologySuiteIOSpatiaLitePackageVersion>
<NetTopologySuiteIOSqlServerBytesPackageVersion>2.0.0</NetTopologySuiteIOSqlServerBytesPackageVersion>
<SQLitePCLRawBundleESqlite3PackageVersion>2.0.4</SQLitePCLRawBundleESqlite3PackageVersion>
<SQLitePCLRawBundleESqlcipherPackageVersion>2.0.4</SQLitePCLRawBundleESqlcipherPackageVersion>
<SQLitePCLRawCorePackageVersion>2.0.4</SQLitePCLRawCorePackageVersion>
<SQLitePCLRawBundleESqlite3PackageVersion>2.1.2</SQLitePCLRawBundleESqlite3PackageVersion>
<SQLitePCLRawBundleESqlcipherPackageVersion>2.1.2</SQLitePCLRawBundleESqlcipherPackageVersion>
<SQLitePCLRawCorePackageVersion>2.1.2</SQLitePCLRawCorePackageVersion>
<StyleCopAnalyzersPackageVersion>1.1.118</StyleCopAnalyzersPackageVersion>
<BenchmarkDotNetPackageVersion>0.11.3</BenchmarkDotNetPackageVersion>
<MicrosoftDataSqlClientPackageVersion>1.1.3</MicrosoftDataSqlClientPackageVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,11 +337,11 @@ RandomProperty randomType
{
var columns = dbModel.Tables.Single().Columns;
Assert.Equal("integer", columns.Single(c => c.Name == "IntegerProperty").StoreType);
Assert.Equal("real", columns.Single(c => c.Name == "RealProperty").StoreType);
Assert.Equal("text", columns.Single(c => c.Name == "TextProperty").StoreType);
Assert.Equal("blob", columns.Single(c => c.Name == "BlobProperty").StoreType);
Assert.Equal("randomType", columns.Single(c => c.Name == "RandomProperty").StoreType);
Assert.Equal("integer", columns.Single(c => c.Name == "IntegerProperty").StoreType, ignoreCase: true);
Assert.Equal("real", columns.Single(c => c.Name == "RealProperty").StoreType, ignoreCase: true);
Assert.Equal("text", columns.Single(c => c.Name == "TextProperty").StoreType, ignoreCase: true);
Assert.Equal("blob", columns.Single(c => c.Name == "BlobProperty").StoreType, ignoreCase: true);
Assert.Equal("randomType", columns.Single(c => c.Name == "RandomProperty").StoreType, ignoreCase: true);
},
"DROP TABLE StoreType;");
}
Expand Down

0 comments on commit 2e955f4

Please sign in to comment.