File tree Expand file tree Collapse file tree 3 files changed +24
-11
lines changed
src/test/scala/nl/gn0s1s/between Expand file tree Collapse file tree 3 files changed +24
-11
lines changed Original file line number Diff line number Diff line change 66
77# Scala Steward: Reformat with scalafmt 3.10.2
88e85201b040700f8ac68b991f82d1c43bb95025fc
9+
10+ # Scala Steward: Reformat with scalafmt 3.10.4
11+ 990fc367cd11d5fbfd66ed925fb7f60277b8b8ea
Original file line number Diff line number Diff line change 1- version = 3.10 .3
1+ version = 3.10 .4
22
33align.preset = most
44literals.double = Upper
Original file line number Diff line number Diff line change @@ -45,16 +45,26 @@ object IntervalSpec extends Properties("Interval") {
4545 }
4646
4747 property(" all relations and their inverses are available" ) = forAll { (i : Interval [Double ], j : Interval [Double ]) =>
48- (i before j) == (j after i) &&
49- (i precedes j) == (j precededBy i) &&
50- (i meets j) == (j metBy i) &&
51- (i overlaps j) == (j overlappedBy i) &&
52- (i finishes j) == (j finishedBy i) &&
53- (i ends j) == (j endedBy i) &&
54- (i during j) == (j contains i) &&
55- (i starts j) == (j startedBy i) &&
56- (i si j) == (i startedBy j) &&
57- (i encloses j) == (j enclosedBy i)
48+ (i before j) ==
49+ (j after i) &&
50+ (i precedes j) ==
51+ (j precededBy i) &&
52+ (i meets j) ==
53+ (j metBy i) &&
54+ (i overlaps j) ==
55+ (j overlappedBy i) &&
56+ (i finishes j) ==
57+ (j finishedBy i) &&
58+ (i ends j) ==
59+ (j endedBy i) &&
60+ (i during j) ==
61+ (j contains i) &&
62+ (i starts j) ==
63+ (j startedBy i) &&
64+ (i si j) ==
65+ (i startedBy j) &&
66+ (i encloses j) ==
67+ (j enclosedBy i)
5868 }
5969
6070 def genDouble : Gen [Double ] = Gen .chooseNum[Double ](2 , 7 )
You can’t perform that action at this time.
0 commit comments