Update Robolectric to 4.7.3
This commit is contained in:
parent
91239f92d2
commit
fea7b7c7bf
3 changed files with 4 additions and 4 deletions
|
@ -192,7 +192,7 @@ fun SQLiteDatabase.createMessagePart(
|
|||
put("mime_type", mimeType)
|
||||
put("decoded_body_size", decodedBodySize)
|
||||
put("display_name", displayName)
|
||||
put("header", header)
|
||||
put("header", header?.toByteArray())
|
||||
put("encoding", encoding)
|
||||
put("charset", charset)
|
||||
put("data_location", dataLocation)
|
||||
|
|
|
@ -35,7 +35,7 @@ fun SQLiteDatabase.createMessagePart(
|
|||
put("mime_type", mimeType)
|
||||
put("decoded_body_size", decodedBodySize)
|
||||
put("display_name", displayName)
|
||||
put("header", header)
|
||||
put("header", header?.toByteArray())
|
||||
put("encoding", encoding)
|
||||
put("charset", charset)
|
||||
put("data_location", dataLocation)
|
||||
|
|
|
@ -7,7 +7,7 @@ buildscript {
|
|||
'targetSdk': 31,
|
||||
'minSdk': 21,
|
||||
'buildTools': '30.0.3',
|
||||
'robolectricSdk': 30
|
||||
'robolectricSdk': 31
|
||||
]
|
||||
|
||||
versions = [
|
||||
|
@ -44,7 +44,7 @@ buildscript {
|
|||
|
||||
'androidxTestRunner': '1.4.0',
|
||||
'junit': '4.13.2',
|
||||
'robolectric': '4.6.1',
|
||||
'robolectric': '4.7.3',
|
||||
'mockito': '4.0.0',
|
||||
'mockitoKotlin': '4.0.0',
|
||||
'truth': '1.1.3',
|
||||
|
|
Loading…
Reference in a new issue