summaryrefslogtreecommitdiff
path: root/internal/types
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2024-08-31 11:06:39 +0300
committerPaul Buetow <paul@buetow.org>2024-08-31 11:06:39 +0300
commitc1432a3f7fb1d454fbcfa047b0c37a95a16c9e33 (patch)
treebe55010ddcfeaf6ee813754d1ce3f5e79158f153 /internal/types
parentb923d7fc679901d9724cdd9ba4450e8eea448168 (diff)
fix and so on
Diffstat (limited to 'internal/types')
-rw-r--r--internal/types/entry_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/types/entry_test.go b/internal/types/entry_test.go
index fe0a0cd..95d7a8c 100644
--- a/internal/types/entry_test.go
+++ b/internal/types/entry_test.go
@@ -9,8 +9,8 @@ func oneEntry() (Entry, error) {
{
"body": "Body text here",
"shared": {
- "Foo": { "Is": true },
- "Bar": { "Is": false }
+ "Foo": { "is": true },
+ "Bar": { "is": false }
}
}
`
@@ -22,9 +22,9 @@ func anotherEntry() (Entry, error) {
{
"body": "Body text here",
"shared": {
- "Foo": { "Is": true },
- "Bar": { "Is": true },
- "Baz": { "Is": false }
+ "Foo": { "is": true },
+ "Bar": { "is": true },
+ "Baz": { "is": false }
}
}
`