Skip to content

Commit

Permalink
go version updated and assert moved
Browse files Browse the repository at this point in the history
  • Loading branch information
andygeiss committed Aug 2, 2022
1 parent ecbd86b commit a5e5892
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright 2020 Andreas Geiß
Copyright 2022 Andreas Geiß

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 3 additions & 2 deletions digital/digital_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package digital_test

import (
"github.com/andygeiss/assert"
"github.com/andygeiss/esp32-controller/digital"
"testing"

"github.com/andygeiss/esp32-controller/digital"
"github.com/andygeiss/utils/assert"
)

func TestDigitalWrite(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/andygeiss/esp32-controller

go 1.14
go 1.18

require github.com/andygeiss/assert v0.0.9
require github.com/andygeiss/utils v0.1.1
5 changes: 3 additions & 2 deletions random/random_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package random_test

import (
"github.com/andygeiss/assert"
"github.com/andygeiss/esp32-controller/random"
"testing"

"github.com/andygeiss/esp32-controller/random"
"github.com/andygeiss/utils/assert"
)

func TestNum(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions serial/serial_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package serial_test

import (
"github.com/andygeiss/assert"
"github.com/andygeiss/esp32-controller/serial"
"testing"

"github.com/andygeiss/esp32-controller/serial"
"github.com/andygeiss/utils/assert"
)

func TestSerialBegin(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions wifi/wifi_test.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package wifi_test

import (
"github.com/andygeiss/assert"
"github.com/andygeiss/esp32-controller/wifi"
"testing"

"github.com/andygeiss/esp32-controller/wifi"
"github.com/andygeiss/utils/assert"
)

func TestWifiBegin(t *testing.T) {
Expand Down

0 comments on commit a5e5892

Please sign in to comment.