Skip to content

Commit ba9ea9c

Browse files
klmhyeonwooCopilot
andauthored
Update package/objectUtil/removeKey/index.test.ts
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent af8f09c commit ba9ea9c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

package/objectUtil/removeKey/index.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { describe, expect, test } from "vitest";
22
import removeKey from ".";
33

44
describe("removeKey 유틸 함수 테스트", () => {
5-
test("객체와 키를 입력했을 때, 정상적으로 개체에서 속성이 제거되어야한다.", () => {
5+
test("객체와 키를 입력했을 때, 정상적으로 객체에서 속성이 제거되어야한다.", () => {
66
expect(removeKey("b", { a: 1, b: 2, c: 3 })).toEqual({ a: 1, c: 3 });
77
});
88
test("객체와 키를 입력했을 때, 제거할 키가 객체에 없으면 원본 객체가 반환되어야한다.", () => {

0 commit comments

Comments
 (0)