fix(llc): fix contains filter params

This commit is contained in:
Salvatore Giordano
2021-09-07 10:36:53 +02:00
parent d18286dc8d
commit fe73cf0b71
2 changed files with 4 additions and 4 deletions
@@ -145,7 +145,7 @@ void main() {
test('contains', () {
const key = 'testKey';
const values = ['testValue'];
const values = 'testValue';
final filter = Filter.contains(key, values);
expect(filter.key, key);
expect(filter.value, values);