[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:
Victor Woeltjen
2016-03-14 11:59:19 -07:00
parent 0ff360ced3
commit f2c040367b
3 changed files with 12 additions and 12 deletions

View File

@@ -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(
});
}
);
);