zblueslip: Do not expose internal function check_seen_messages.

This commit is contained in:
Rohitt Vashishtha 2020-04-20 16:16:22 +05:30 committed by showell
parent b2c55da3e1
commit 7c357b27d8

View File

@ -37,7 +37,7 @@ exports.make_zblueslip = function () {
lib.test_data[name].push(obj);
};
lib.check_seen_messages = () => {
const check_seen_messages = () => {
for (const name of names) {
for (const obj of lib.test_logs[name]) {
const message = obj.message;
@ -66,7 +66,7 @@ exports.make_zblueslip = function () {
lib.reset = (skip_checks = false) => {
if (!skip_checks) {
lib.check_seen_messages();
check_seen_messages();
}
for (const name of names) {