Skip to content

Commit e8777ba

Browse files
committed
fix compile error
1 parent 840b209 commit e8777ba

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: wechaty-puppet-padplus/src/main/scala/wechaty/padplus/support/MessageRawSupport.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ trait MessageRawSupport {
4646
// case _ => uploadFile(file.name,file.toStream)
4747
// }
4848

49-
49+
5050
/*
5151
data = {
5252
fileName,

Diff for: wechaty-puppet-padplus/src/test/scala/wechaty/padplus/support/ContactRawSupportTest.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class ContactRawSupportTest extends PadplusTestEventBase {
6363
.willReturn(responseBuilder.build())
6464
)
6565

66-
val future = instance.getContactSelfInfo()
66+
val future = instance.contactSelfInfo()
6767

6868
val grpcContact = new GetContactSelfInfoGrpcResponse
6969
grpcContact.userName = "jcai"
@@ -80,7 +80,7 @@ class ContactRawSupportTest extends PadplusTestEventBase {
8080
.willReturn(responseBuilder.build())
8181
)
8282

83-
val future = instance.getContactSelfInfo()
83+
val future = instance.contactSelfInfo()
8484

8585

8686
val payload = Await.ready(future, 10 seconds)

0 commit comments

Comments
 (0)