Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 761b2ca

Browse filesBrowse files
committed
Fix failed test
1 parent 8f0d86c commit 761b2ca
Copy full SHA for 761b2ca

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎intercept_test.go

Copy file name to clipboardExpand all lines: intercept_test.go
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func testInterceptorController(t *testing.T, appControllerPtr reflect.Value, met
7575

7676
func testInterception(t *testing.T, intc *Interception, arg reflect.Value) {
7777
val := intc.Invoke(arg)
78-
if val.IsNil() {
78+
if !val.IsNil() {
7979
t.Errorf("Failed (%s): Expected nil got %v", intc, val)
8080
}
8181
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.