Skip to content

Commit

Permalink
style: fix Russian spelling (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
7006 committed Dec 30, 2020
1 parent afd25b4 commit 70b3551
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/connection.js
Expand Up @@ -67,7 +67,7 @@ describe("connection", function() {
it("should work in a worker", function(done) {
var worker = new Worker("/test/support/worker.js");
var msg = 0;
var utf8yay = "пойду сать всем мпокойной ночи";
var utf8yay = "пойду спать всем спокойной ночи";
worker.onmessage = function(e) {
msg++;
if (msg === 1) {
Expand Down
2 changes: 1 addition & 1 deletion test/support/server.js
Expand Up @@ -34,7 +34,7 @@ server.on("connection", function(socket) {
socket.send(abv);
return;
} else if (data === "give utf8") {
socket.send("пойду сать всем мпокойной ночи");
socket.send("пойду спать всем спокойной ночи");
return;
}

Expand Down

0 comments on commit 70b3551

Please sign in to comment.