[Timeline] Rename TimelineCSVExporter
...to TimelineColumnizer, clarifying its role/responsibilities in the context of the CSV export task; https://github.com/nasa/openmctweb/pull/728#discussion_r56031331
This commit is contained in:
@@ -22,9 +22,9 @@
|
||||
/*global define,describe,it,expect,beforeEach,waitsFor,jasmine,window,afterEach*/
|
||||
|
||||
define(
|
||||
['../../src/actions/TimelineCSVExporter'],
|
||||
function (TimelineCSVExporter) {
|
||||
describe("TimelineCSVExporter", function () {
|
||||
['../../src/actions/TimelineColumnizer'],
|
||||
function (TimelineColumnizer) {
|
||||
describe("TimelineColumnizer", function () {
|
||||
var mockDomainObjects,
|
||||
testMetadata,
|
||||
exporter;
|
||||
@@ -76,7 +76,7 @@ define(
|
||||
return c === 'metadata' && testMetadata;
|
||||
});
|
||||
|
||||
exporter = new TimelineCSVExporter(mockDomainObjects);
|
||||
exporter = new TimelineColumnizer(mockDomainObjects);
|
||||
});
|
||||
|
||||
describe("rows", function () {
|
||||
@@ -126,4 +126,4 @@ define(
|
||||
|
||||
});
|
||||
}
|
||||
);
|
||||
);
|
||||
Reference in New Issue
Block a user