Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs =================================================================== diff -u -r065af7e201b59ec19a17c42e9d772f5e86b31338 -rb2b9fdf365e70928a05c57966eeed30d9050e528 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs (.../SqLiteDatabaseHelper.cs) (revision 065af7e201b59ec19a17c42e9d772f5e86b31338) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/SqLiteDatabaseHelper.cs (.../SqLiteDatabaseHelper.cs) (revision b2b9fdf365e70928a05c57966eeed30d9050e528) @@ -90,11 +90,11 @@ { if (string.IsNullOrWhiteSpace(databaseSchemaQuery)) { - throw new ArgumentNullException("databaseSchemaQuery"); + throw new ArgumentNullException(nameof(databaseSchemaQuery)); } if (string.IsNullOrWhiteSpace(databaseFilePath)) { - throw new ArgumentNullException("databaseFilePath"); + throw new ArgumentNullException(nameof(databaseFilePath)); } SQLiteConnection.CreateFile(databaseFilePath);