Skip to content

Commit

Permalink
test: allow values other than true for unified filter
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Nov 11, 2019
1 parent d38a6b6 commit 0a22e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/runner/filters/unified_filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class UnifiedTopologyFilter {

return (
typeof unifiedTopology !== 'boolean' ||
unifiedTopology === process.env.MONGODB_UNIFIED_TOPOLOGY
unifiedTopology === !!process.env.MONGODB_UNIFIED_TOPOLOGY
);
}
}
Expand Down

0 comments on commit 0a22e3f

Please sign in to comment.