Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit f250383

Browse files
committed
Fix failing snippets in /wireless and activate testing
1 parent b902ee1 commit f250383

File tree

20 files changed

+8
-9
lines changed

20 files changed

+8
-9
lines changed

wireless/commands/list-example-1/list-example-1.6.x.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
client = Client(account_sid, auth_token)
99

10-
commands = client.preview.wireless.commands('DCAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')\
11-
.list()
10+
commands = client.preview.wireless.commands.list()
1211

1312
print(commands)

wireless/rateplans/create-example-1/create-example-1.3.x.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ client.preview.wireless.ratePlans
99
uniqueName: 'SmartMeterCA',
1010
friendlyName: 'California SmartMeter Plan',
1111
dataLimit: 5,
12-
messagingEnabled: true
12+
messagingEnabled: 'true'
1313
})
1414
.then(function(response) {
1515
console.log(response);

wireless/rateplans/instance-get-example-1/instance-get-example-1.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
->ratePlans('WPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA')
1313
->fetch();
1414

15-
prin_r($ratePlan);
15+
print_r($ratePlan);

0 commit comments

Comments
 (0)