Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Improve QgsSqliteUtils::quotedIdentifier test
  • Loading branch information
m-kuhn committed Dec 19, 2018
1 parent 0437d4a commit 237d40a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/src/core/testqgssqliteutils.cpp
Expand Up @@ -121,6 +121,7 @@ void TestQgsSqliteUtils::testQuotedIdentifier_data()

QTest::newRow( "myColumn" ) << "myColumn" << "\"myColumn\"";
QTest::newRow( "my column" ) << "my column" << "\"my column\"";
QTest::newRow( "The \"Column\"" ) << "The \"Column\"" << "\"The \"\"Column\"\"\"";
}

void TestQgsSqliteUtils::testQuotedIdentifier()
Expand Down

0 comments on commit 237d40a

Please sign in to comment.