Skip to content

Commit 8d4c911

Browse files
committed
chore: undo accidental change of description string
1 parent 4b685b3 commit 8d4c911

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/danfojs-browser/tests/core/frame.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe("DataFrame", function () {
101101
assert.deepEqual(df.dtypes, [ "string", "int32", "float32", "string" ]);
102102
assert.deepEqual(df.index, [ 0, 1, 2, 3 ]);
103103
});
104-
it("Add new dfd.Series to DataFrame works", function () {
104+
it("Add new Series to DataFrame works", function () {
105105
let data = { alpha: [ "A", "B", "C", "D" ], count: [ 1, 2, 3, 4 ], sum: [ 20.3, 30.456, 40.90, 90.1 ] };
106106
let df = new dfd.DataFrame(data);
107107
const newdf = df.addColumn("new_column", new dfd.Series([ "a", "b", "c", "d" ]));

0 commit comments

Comments
 (0)