Skip to content

Commit 5398c1d

Browse files
committed
Corrected a few mixed up things again
1 parent 5c7e8ec commit 5398c1d

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

dev/storage_base.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ namespace sqlite_orm::internal {
406406
* double operator()(double arg) const {
407407
* return std::sqrt(arg);
408408
* }
409-
*
409+
*
410410
* static const char* name() {
411411
* return "SQRT";
412412
* }

include/sqlite_orm/sqlite_orm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20164,7 +20164,7 @@ namespace sqlite_orm::internal {
2016420164
* double operator()(double arg) const {
2016520165
* return std::sqrt(arg);
2016620166
* }
20167-
*
20167+
*
2016820168
* static const char* name() {
2016920169
* return "SQRT";
2017020170
* }

tests/logger_tests.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,15 +250,15 @@ TEST_CASE("logger") {
250250
SECTION("db_release_memory") {
251251
std::ignore = storage.db_release_memory();
252252
}
253-
SECTION("trigger_names") {
253+
SECTION("table_names") {
254254
std::ignore = storage.table_names();
255255
pushExpected("SELECT name FROM sqlite_master WHERE type='table'");
256256
}
257257
SECTION("view_names") {
258258
std::ignore = storage.view_names();
259259
pushExpected("SELECT name FROM sqlite_master WHERE type='view'");
260260
}
261-
SECTION("table_names") {
261+
SECTION("trigger_names") {
262262
std::ignore = storage.trigger_names();
263263
pushExpected("SELECT name FROM sqlite_master WHERE type='trigger'");
264264
}

0 commit comments

Comments
 (0)