Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typos #7716

Merged
merged 1 commit into from
Jun 6, 2019
Merged

typos #7716

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/javascripts/test_helper.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ QUnit.testDone(function() {
server.shutdown();

// ensures any event not removed is not leaking between tests
// most like in intialisers, other places (controller, component...)
// most likely in intialisers, other places (controller, component...)
// should be fixed in code
var appEvents = window.Discourse.__container__.lookup("app-events:main");
var events = appEvents.__proto__._events;
Expand All @@ -167,7 +167,7 @@ QUnit.testDone(function() {
});
});

// attempts to remove any subscribed message bug callback
// attempts to remove any subscribed message bus callback
window.MessageBus.callbacks.forEach(function(callback) {
window.MessageBus.unsubscribe(callback.channel, callback.func);
});
Expand Down