Skip to content

Commit 16b2fdc

Browse files
Sintendombroadst
authored andcommitted
style: fix test function name typo
1 parent f562714 commit 16b2fdc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/functional/apm_tests.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ describe('APM', function() {
950950
expect(event.commandName).to.equal(expected.command_name);
951951
}
952952

953-
function validateExpecations(expectation, results) {
953+
function validateExpectations(expectation, results) {
954954
if (expectation.command_started_event) {
955955
validateCommandStartedEvent(expectation.command_started_event, results.starts.shift());
956956
} else if (expectation.command_succeeded_event) {
@@ -1070,7 +1070,7 @@ describe('APM', function() {
10701070
.catch(() => {} /* ignore */)
10711071
.then(() =>
10721072
test.expectations.forEach(expectation =>
1073-
validateExpecations(expectation, monitoringResults)
1073+
validateExpectations(expectation, monitoringResults)
10741074
)
10751075
);
10761076
}
@@ -1084,7 +1084,7 @@ describe('APM', function() {
10841084
.catch(() => {} /* ignore */)
10851085
.then(() =>
10861086
test.expectations.forEach(expectation =>
1087-
validateExpecations(expectation, monitoringResults)
1087+
validateExpectations(expectation, monitoringResults)
10881088
)
10891089
);
10901090
});

0 commit comments

Comments
 (0)