about summary refs log tree commit diff
path: root/main_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'main_test.go')
-rw-r--r--main_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main_test.go b/main_test.go
index b4dd362..1b5ddc7 100644
--- a/main_test.go
+++ b/main_test.go
@@ -45,7 +45,7 @@ func Test_netNFW(t *testing.T) {
 	}
 	for _, tt := range tests {
 		t.Run(tt.name, func(t *testing.T) {
-			if got := netNFW(tt.args.x, tt.args.y, tt.args.z); got != tt.want {
+			if got, _ := netNFW(tt.args.x, tt.args.y, tt.args.z); got != tt.want {
 				t.Errorf("netNFW() = %v, want %v", got, tt.want)
 			}
 		})