Skip to content

Commit

Permalink
chore: undo accidental change of description string
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonSpork committed Mar 8, 2022
1 parent 4b685b3 commit 8d4c911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/danfojs-browser/tests/core/frame.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ describe("DataFrame", function () {
assert.deepEqual(df.dtypes, [ "string", "int32", "float32", "string" ]);
assert.deepEqual(df.index, [ 0, 1, 2, 3 ]);
});
it("Add new dfd.Series to DataFrame works", function () {
it("Add new Series to DataFrame works", function () {
let data = { alpha: [ "A", "B", "C", "D" ], count: [ 1, 2, 3, 4 ], sum: [ 20.3, 30.456, 40.90, 90.1 ] };
let df = new dfd.DataFrame(data);
const newdf = df.addColumn("new_column", new dfd.Series([ "a", "b", "c", "d" ]));
Expand Down

0 comments on commit 8d4c911

Please sign in to comment.