I am getting the error below in a jldoctest
. The command, when copy/pasted, works perfectly fine. What can be wrong here?
#```jldoctest
│ julia> using CellListMap
│
│ julia> box = Box([ 10 0 0
│ 0 10 5
│ 0 0 10 ], 1)
│ Box{TriclinicCell, 3, Float64, 9}
│ unit cell matrix: [10.0 0.0 0.0; 0.0 10.0 5.0; 0.0 0.0 10.0]
│ cutoff: 1.0
│ number of computing cells on each dimension: [12, 17, 12]
│ computing cell sizes: [1.0, 1.0, 1.0] (lcell: 1)
│ Total number of cells: 2448
│
#│ ```
│
│ Subexpression:
│
│ box = Box([ 10 0 0
│ 0 10 5
│ 0 0 10 ], 1)
│
│ Evaluated output:
│
│
│
│ Expected output:
│
│ Box{TriclinicCell, 3, Float64, 9}
│ unit cell matrix: [10.0 0.0 0.0; 0.0 10.0 5.0; 0.0 0.0 10.0]
│ cutoff: 1.0
│ number of computing cells on each dimension: [12, 17, 12]
│ computing cell sizes: [1.0, 1.0, 1.0] (lcell: 1)
│ Total number of cells: 2448