Skip to content

Commit

Permalink
coulomb.integrations.cats
Browse files Browse the repository at this point in the history
  • Loading branch information
erikerlandson committed Apr 26, 2024
1 parent 850f28d commit 6b7990f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package coulomb.cats
package coulomb.integrations.cats

object all:
export quantity.given
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package coulomb.cats
package coulomb.integrations.cats

object deltaquantity:
import _root_.cats.kernel.{Eq, Hash, Order}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package coulomb.cats
package coulomb.integrations.cats

object quantity:
import _root_.cats.kernel.{Eq, Hash, Order}
Expand Down
4 changes: 2 additions & 2 deletions core/src/test/scala/coulomb/deltaquantity.scala
Original file line number Diff line number Diff line change
Expand Up @@ -192,8 +192,8 @@ class DeltaQuantitySuite extends CoulombSuite:
}

test("cats Eq, Ord, Hash") {
import _root_.cats.kernel.{Eq, Hash, Order}
import coulomb.cats.all.given
import cats.kernel.{Eq, Hash, Order}
import coulomb.integrations.cats.all.given

val q1 = 1.withDeltaUnit[Meter, Meter]
val q2 = 1.withDeltaUnit[Meter, Meter]
Expand Down
4 changes: 2 additions & 2 deletions core/src/test/scala/coulomb/quantity.scala
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ class QuantitySuite extends CoulombSuite:
}

test("cats Eq, Ord, Hash") {
import _root_.cats.kernel.{Eq, Hash, Order}
import coulomb.cats.all.given
import cats.kernel.{Eq, Hash, Order}
import coulomb.integrations.cats.all.given

val q1 = 1.withUnit[Meter]
val q2 = 1.withUnit[Meter]
Expand Down

0 comments on commit 6b7990f

Please sign in to comment.