Skip to content

Commit

Permalink
fixup! Add benchmark for conversation open.
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholas-signal committed Mar 29, 2023
1 parent cb4a45f commit 16e8f96
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -9,6 +9,6 @@ object TestDbUtils {
val database: SQLiteDatabase = SignalDatabase.messages.databaseHelper.signalWritableDatabase
val contentValues = ContentValues()
contentValues.put(MessageTable.DATE_RECEIVED, timestamp)
val rowsUpdated = database.update(MessageTable.TABLE_NAME, contentValues, MessageTable.ID_WHERE, buildArgs(messageId))
val rowsUpdated = database.update(MessageTable.TABLE_NAME, contentValues, DatabaseTable.ID_WHERE, buildArgs(messageId))
}
}

0 comments on commit 16e8f96

Please sign in to comment.