mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update deps
This commit is contained in:
parent
55b2ed9851
commit
ee400254ac
139 changed files with 5480 additions and 3125 deletions
4
vendor/github.com/smartystreets/goconvey/LICENSE.md
generated
vendored
4
vendor/github.com/smartystreets/goconvey/LICENSE.md
generated
vendored
|
@ -1,4 +1,6 @@
|
|||
Copyright (c) 2016 SmartyStreets, LLC
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2022 Smarty
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
6
vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go
generated
vendored
6
vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go
generated
vendored
|
@ -11,12 +11,12 @@ type Printer struct {
|
|||
prefix string
|
||||
}
|
||||
|
||||
func (self *Printer) Println(message string, values ...interface{}) {
|
||||
func (self *Printer) Println(message string, values ...any) {
|
||||
formatted := self.format(message, values...) + newline
|
||||
self.out.Write([]byte(formatted))
|
||||
}
|
||||
|
||||
func (self *Printer) Print(message string, values ...interface{}) {
|
||||
func (self *Printer) Print(message string, values ...any) {
|
||||
formatted := self.format(message, values...)
|
||||
self.out.Write([]byte(formatted))
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ func (self *Printer) Insert(text string) {
|
|||
self.out.Write([]byte(text))
|
||||
}
|
||||
|
||||
func (self *Printer) format(message string, values ...interface{}) string {
|
||||
func (self *Printer) format(message string, values ...any) string {
|
||||
var formatted string
|
||||
if len(values) == 0 {
|
||||
formatted = self.prefix + message
|
||||
|
|
6
vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go
generated
vendored
6
vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go
generated
vendored
|
@ -76,7 +76,7 @@ func removePackagePath(name string) string {
|
|||
|
||||
/////////////////// FailureView ////////////////////////
|
||||
|
||||
// This struct is also declared in github.com/smartystreets/assertions.
|
||||
// FailureView is also declared in github.com/smarty/assertions.
|
||||
// The json struct tags should be equal in both declarations.
|
||||
type FailureView struct {
|
||||
Message string `json:"Message"`
|
||||
|
@ -92,7 +92,7 @@ type AssertionResult struct {
|
|||
Expected string
|
||||
Actual string
|
||||
Failure string
|
||||
Error interface{}
|
||||
Error any
|
||||
StackTrace string
|
||||
Skipped bool
|
||||
}
|
||||
|
@ -117,7 +117,7 @@ func parseFailure(failure string, report *AssertionResult) {
|
|||
report.Failure = failure
|
||||
}
|
||||
}
|
||||
func NewErrorReport(err interface{}) *AssertionResult {
|
||||
func NewErrorReport(err any) *AssertionResult {
|
||||
report := new(AssertionResult)
|
||||
report.File, report.Line = caller()
|
||||
report.StackTrace = fullStackTrace()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue