File tree 3 files changed +4
-4
lines changed
src/test/java/com/vonage/client
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 43
43
- name : Send to Slack channels
44
44
uses : slackapi/slack-github-action@79ad3a9d89410e5b0d961a0e7422f18c62c81bfb
45
45
with :
46
- webhook : ${{ secrets[matrix.url]}}
46
+ webhook : ${{ secrets[matrix.url] }}
47
47
webhook-type : incoming-webhook
48
48
errors : true
49
49
payload : |
56
56
text:
57
57
type: "mrkdwn"
58
58
text: "${{ github.event.release.body }}"
59
- emoji: true
60
59
- type: "divider"
61
60
- type: "section"
62
61
text:
63
62
type: "mrkdwn"
64
- text: "View the full change log <${{github.event.release.html_url }}|here>."
63
+ text: "View the full change log <${{ github.event.release.html_url }}|here>."
Original file line number Diff line number Diff line change 13
13
[ ![ Pulse] ( https://img.shields.io/github/commit-activity/m/vonage/vonage-java-sdk )] ( https://github.com/vonage/vonage-java-sdk/pulse )
14
14
15
15
<img src =" https://developer.nexmo.com/assets/images/Vonage_Nexmo.svg " height =" 48px " alt =" Nexmo is now known as Vonage " />
16
+ <!-- img src="https://developer.nexmo.com/images/logos/vbc-logo.svg" height="48px" alt="Vonage" /-->
16
17
17
18
This Java SDK allows you to use [ Vonage APIs] ( https://developer.vonage.com/api ) in any JVM-based application.
18
19
You'll need to have [ created a Vonage account] ( https://dashboard.nexmo.com/sign-up?utm_source=DEV_REL&utm_medium=github&utm_campaign=java-client-library ) .
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ public void testApplicationIdWithCertPath() {
198
198
public void testApplicationIdWithCertPathAsString () {
199
199
VonageClient vonageClient = VonageClient .builder ()
200
200
.applicationId (APPLICATION_ID )
201
- .privateKeyPath (privateKeyPath )
201
+ .privateKeyPath (privateKeyPath . toString () )
202
202
.build ();
203
203
AuthCollection authCollection = vonageClient .httpWrapper .getAuthCollection ();
204
204
assertTrue (authCollection .hasAuthMethod (JWTAuthMethod .class ));
You can’t perform that action at this time.
0 commit comments