Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixing tests
  • Loading branch information
athanclark committed Feb 7, 2019
commit c99c202215668e0a113a730240d1306a792c3a8b
6 changes: 3 additions & 3 deletions test/Properties/DataView.purs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Data.ArrayBuffer.DataView as DV
import Data.ArrayBuffer.DataView.Gen (genDataView, genWithOffsetAndValue, WithOffsetAndValue(..))
import Data.ArrayBuffer.Typed.Gen (genFloat32, genFloat64, genInt16, genInt32, genInt8, genUint16, genUint32, genUint8)
import Data.ArrayBuffer.Types (Float32, Float64, Int16, Int32, Int8, Uint16, Uint32, Uint8)
import Data.ArrayBuffer.ValueMapping (class BytesPerValue)
import Data.ArrayBuffer.ValueMapping (class BytesPerValue, class ShowArrayViewType, class BinaryValue)
import Data.Maybe (Maybe(..))
import Data.Typelevel.Num (class Nat, D1, D2, D4, D8)
import Data.UInt (UInt)
Expand Down Expand Up @@ -37,10 +37,10 @@ type TestableViewF a name b n t q =
=> Ord t
=> Semiring t
=> BytesPerValue a b
=> DV.ShowArrayViewType a name
=> BinaryValue a t
=> ShowArrayViewType a name
=> IsSymbol name
=> Nat b
=> DV.DataView a t
=> WithOffsetAndValue n a t
-> q

Expand Down