Skip to content

Commit 7c9ca05

Browse files
committed
translate test 1
1 parent 10b1fb0 commit 7c9ca05

File tree

1 file changed

+2
-2
lines changed
  • 1-js/05-data-types/07-map-set/01-array-unique-map/_js.view

1 file changed

+2
-2
lines changed

1-js/05-data-types/07-map-set/01-array-unique-map/_js.view/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
describe("unique", function() {
2-
it("removes non-unique elements", function() {
2+
it("remove elementos não únicos", function () {
33
let strings = ["Hare", "Krishna", "Hare", "Krishna",
44
"Krishna", "Krishna", "Hare", "Hare", ":-O"
55
];
66

77
assert.deepEqual(unique(strings), ["Hare", "Krishna", ":-O"]);
88
});
99

10-
it("does not change the source array", function() {
10+
it("não altera o array de origem", function () {
1111
let strings = ["Krishna", "Krishna", "Hare", "Hare"];
1212
unique(strings);
1313
assert.deepEqual(strings, ["Krishna", "Krishna", "Hare", "Hare"]);

0 commit comments

Comments
 (0)