Skip to content

Commit 8e76fb4

Browse files
committed
Fix that stupid test for real
1 parent 43159dc commit 8e76fb4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/kv/src/serializer.test.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ test("Serialize Object simple", () => {
77
prop2: 10,
88
boolProp: false,
99
boolProp2: true,
10-
dateProp: new Date(2004, 10, 11, 8, 10, 0).toISOString(),
1110
};
1211

1312
const kvStr = KvSerializer.serialize(obj);
@@ -16,7 +15,6 @@ test("Serialize Object simple", () => {
1615
"prop2" "10"
1716
"boolProp" "false"
1817
"boolProp2" "true"
19-
"dateProp" "2004-11-11T07:10:00.000Z"
2018
}`);
2119
});
2220

0 commit comments

Comments
 (0)