Skip to content

Commit 8138c44

Browse files
committed
Formating fix on planner_test.go
1 parent fa482d1 commit 8138c44

1 file changed

Lines changed: 27 additions & 27 deletions

File tree

bql/planner/planner_test.go

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -201,35 +201,35 @@ func TestPlannerDropGraph(t *testing.T) {
201201

202202
const (
203203
originalTriples = `/u<joe> "parent_of"@[] /u<mary>
204-
/u<joe> "parent_of"@[] /u<peter>
205-
/u<peter> "parent_of"@[] /u<john>
206-
/u<peter> "parent_of"@[] /u<eve>
207-
/u<peter> "bought"@[2016-01-01T00:00:00-08:00] /c<mini>
208-
/u<peter> "bought"@[2016-02-01T00:00:00-08:00] /c<model s>
209-
/u<peter> "bought"@[2016-03-01T00:00:00-08:00] /c<model x>
210-
/u<peter> "bought"@[2016-04-01T00:00:00-08:00] /c<model y>
211-
/c<mini> "is_a"@[] /t<car>
212-
/c<model s> "is_a"@[] /t<car>
213-
/c<model x> "is_a"@[] /t<car>
214-
/c<model y> "is_a"@[] /t<car>
215-
/l<barcelona> "predicate"@[] "turned"@[2016-01-01T00:00:00-08:00]
216-
/l<barcelona> "predicate"@[] "turned"@[2016-02-01T00:00:00-08:00]
217-
/l<barcelona> "predicate"@[] "turned"@[2016-03-01T00:00:00-08:00]
218-
/l<barcelona> "predicate"@[] "turned"@[2016-04-01T00:00:00-08:00]
219-
`
204+
/u<joe> "parent_of"@[] /u<peter>
205+
/u<peter> "parent_of"@[] /u<john>
206+
/u<peter> "parent_of"@[] /u<eve>
207+
/u<peter> "bought"@[2016-01-01T00:00:00-08:00] /c<mini>
208+
/u<peter> "bought"@[2016-02-01T00:00:00-08:00] /c<model s>
209+
/u<peter> "bought"@[2016-03-01T00:00:00-08:00] /c<model x>
210+
/u<peter> "bought"@[2016-04-01T00:00:00-08:00] /c<model y>
211+
/c<mini> "is_a"@[] /t<car>
212+
/c<model s> "is_a"@[] /t<car>
213+
/c<model x> "is_a"@[] /t<car>
214+
/c<model y> "is_a"@[] /t<car>
215+
/l<barcelona> "predicate"@[] "turned"@[2016-01-01T00:00:00-08:00]
216+
/l<barcelona> "predicate"@[] "turned"@[2016-02-01T00:00:00-08:00]
217+
/l<barcelona> "predicate"@[] "turned"@[2016-03-01T00:00:00-08:00]
218+
/l<barcelona> "predicate"@[] "turned"@[2016-04-01T00:00:00-08:00]
219+
`
220220

221221
tripleFromIssue40 = `/room<Hallway> "connects_to"@[] /room<Kitchen>
222-
/room<Kitchen> "connects_to"@[] /room<Hallway>
223-
/room<Kitchen> "connects_to"@[] /room<Bathroom>
224-
/room<Kitchen> "connects_to"@[] /room<Bedroom>
225-
/room<Bathroom> "connects_to"@[] /room<Kitchen>
226-
/room<Bedroom> "connects_to"@[] /room<Kitchen>
227-
/room<Bedroom> "connects_to"@[] /room<Fire Escape>
228-
/room<Fire Escape> "connects_to"@[] /room<Kitchen>
229-
/item/book<000> "in"@[2016-04-10T4:21:00.000000000Z] /room<Hallway>
230-
/item/book<000> "in"@[2016-04-10T4:23:00.000000000Z] /room<Kitchen>
231-
/item/book<000> "in"@[2016-04-10T4:25:00.000000000Z] /room<Bedroom>
232-
`
222+
/room<Kitchen> "connects_to"@[] /room<Hallway>
223+
/room<Kitchen> "connects_to"@[] /room<Bathroom>
224+
/room<Kitchen> "connects_to"@[] /room<Bedroom>
225+
/room<Bathroom> "connects_to"@[] /room<Kitchen>
226+
/room<Bedroom> "connects_to"@[] /room<Kitchen>
227+
/room<Bedroom> "connects_to"@[] /room<Fire Escape>
228+
/room<Fire Escape> "connects_to"@[] /room<Kitchen>
229+
/item/book<000> "in"@[2016-04-10T4:21:00.000000000Z] /room<Hallway>
230+
/item/book<000> "in"@[2016-04-10T4:23:00.000000000Z] /room<Kitchen>
231+
/item/book<000> "in"@[2016-04-10T4:25:00.000000000Z] /room<Bedroom>
232+
`
233233

234234
testTriples = originalTriples + tripleFromIssue40
235235
)

0 commit comments

Comments
 (0)