From 07d610d75ae3149cf3f92cb099cf917892c8538b Mon Sep 17 00:00:00 2001 From: Ali Rizvi-Santiago Date: Sun, 19 Aug 2018 01:07:10 -0500 Subject: [PATCH] Ugh. Missed the newly added second argument to common.GetProgressBar() in common/progress_test.go. --- common/progress_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/progress_test.go b/common/progress_test.go index a9b74639b70..028492f88bd 100644 --- a/common/progress_test.go +++ b/common/progress_test.go @@ -122,7 +122,7 @@ func TestUiProgressBar(t *testing.T) { ui := &testProgressBarUi{} // Initialize the Ui progress bar - bar := GetProgressBar(ui) + bar := GetProgressBar(ui, nil) bar.SetTotal64(1) // Ensure that callback has been set to something