Skip to content

Commit

Permalink
Make quotes in updateSecret consistent with other tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cressie176 committed Feb 22, 2024
1 parent 4d25951 commit c4da58b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/channel_api.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,10 @@ suite("connect", function() {

});

suite('updateSecret', function() {
test('updateSecret', function(done) {
suite("updateSecret", function() {
test("updateSecret", function(done) {
connect().then(function(c) {
c.updateSecret(Buffer.from('new secret'), 'no reason')
c.updateSecret(Buffer.from("new secret"), "no reason")
.then(succeed(done), fail(done))
.finally(function() { c.close(); });
});
Expand Down

0 comments on commit c4da58b

Please sign in to comment.