Grafana UI: Add missing argument (#22487)

This commit is contained in:
Alex Khomenko 2020-02-28 13:09:21 +02:00 committed by GitHub
parent c002a39456
commit 8b9b67f248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ function getData() {
describe('Table utils', () => {
describe('getColumns', () => {
it('Should build columns from DataFrame', () => {
const columns = getColumns(getData(), 1000);
const columns = getColumns(getData(), 1000, 120);
expect(columns[0].Header).toBe('Time');
expect(columns[1].Header).toBe('Value');