Skip to content

Commit

Permalink
fix: πŸ› correctly import function after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Sep 14, 2020
1 parent 312db4a commit 7c4fdcf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/

import { omitBlacklistedHeaders } from './index';
import { omitBannedHeaders } from './index';

test(`omits banned headers`, async () => {
const permittedHeaders = {
Expand All @@ -24,7 +24,7 @@ test(`omits banned headers`, async () => {
trailer: 's are for trucks',
};

const filteredHeaders = await omitBlacklistedHeaders({
const filteredHeaders = await omitBannedHeaders({
job: {
title: 'cool-job-bro',
type: 'csv',
Expand Down

0 comments on commit 7c4fdcf

Please sign in to comment.