Skip to content

Commit c4da58b

Browse files
committedFeb 22, 2024·
Make quotes in updateSecret consistent with other tests
1 parent 4d25951 commit c4da58b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/channel_api.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ suite("connect", function() {
5959

6060
});
6161

62-
suite('updateSecret', function() {
63-
test('updateSecret', function(done) {
62+
suite("updateSecret", function() {
63+
test("updateSecret", function(done) {
6464
connect().then(function(c) {
65-
c.updateSecret(Buffer.from('new secret'), 'no reason')
65+
c.updateSecret(Buffer.from("new secret"), "no reason")
6666
.then(succeed(done), fail(done))
6767
.finally(function() { c.close(); });
6868
});

0 commit comments

Comments
 (0)
Please sign in to comment.