Minor correction to AssetTests.cs

(forgot to change test descriptions, has no effect on running the tests)
soprefactor
AlexRa 2010-05-26 10:22:59 +03:00
parent 57f4729eea
commit 5d65ef2db3
1 changed files with 3 additions and 3 deletions

View File

@ -60,17 +60,17 @@ namespace OpenSim.Data.Tests
#else
[TestFixture(Description = "Region store tests (SQLite)")]
[TestFixture(Description = "Asset store tests (SQLite)")]
public class SQLiteAssetTests : AssetTests<SqliteConnection, SQLiteAssetData>
{
}
[TestFixture(Description = "Region store tests (MySQL)")]
[TestFixture(Description = "Asset store tests (MySQL)")]
public class MySqlAssetTests : AssetTests<MySqlConnection, MySQLAssetData>
{
}
[TestFixture(Description = "Region store tests (MS SQL Server)")]
[TestFixture(Description = "Asset store tests (MS SQL Server)")]
public class MSSQLAssetTests : AssetTests<SqlConnection, MSSQLAssetData>
{
}