mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-05 22:17:39 +03:00
go fmt
This commit is contained in:
parent
cd45490c16
commit
db569891a5
6 changed files with 17 additions and 17 deletions
|
@ -19,8 +19,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|||
package modify
|
||||
|
||||
import (
|
||||
"reflect"
|
||||
"context"
|
||||
"reflect"
|
||||
"testing"
|
||||
|
||||
"github.com/foxcpp/maddy/framework/config"
|
||||
|
@ -57,7 +57,7 @@ func testReplaceAddr(t *testing.T, modName string) {
|
|||
}
|
||||
}
|
||||
|
||||
if ! reflect.DeepEqual(actualMulti,expectedMulti) {
|
||||
if !reflect.DeepEqual(actualMulti, expectedMulti) {
|
||||
t.Errorf("want %s, got %s", expectedMulti, actualMulti)
|
||||
}
|
||||
}
|
||||
|
@ -95,15 +95,15 @@ func testReplaceAddr(t *testing.T, modName string) {
|
|||
map[string][]string{
|
||||
"\u00E9@foo.example.com": []string{"rcpt@foo.example.com"},
|
||||
})
|
||||
|
||||
|
||||
if modName == "modify.replace_rcpt" {
|
||||
//multiple aliases
|
||||
test("test@example.com", []string{"test@example.org", "test@example.net"},
|
||||
map[string][]string{"test@example.com": []string{"test@example.org", "test@example.net"}})
|
||||
test("test@example.com", []string{"1@example.com", "2@example.com", "3@example.com"},
|
||||
map[string][]string{"test@example.com": []string{"1@example.com", "2@example.com", "3@example.com"}})
|
||||
test("test@example.com", []string{"1@example.com", "2@example.com", "3@example.com"},
|
||||
map[string][]string{"test@example.com": []string{"1@example.com", "2@example.com", "3@example.com"}})
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
func TestReplaceAddr_RewriteSender(t *testing.T) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue