tpl: Avoid repeating the same test case in TestMD5 and TesSHA*
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 4 Dec 2016 23:27:49 +0000 (00:27 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 4 Dec 2016 23:27:49 +0000 (00:27 +0100)
tpl/template_funcs_test.go

index 91e13e3204278d2740d660b213d1ffd489bdb5e3..7d76da8de4ec1f1b57f9ccbf7e42779d6c124c9c 100644 (file)
@@ -2535,11 +2535,11 @@ func TestMD5(t *testing.T) {
                if result != this.expectedHash {
                        t.Errorf("[%d] md5: expected '%s', got '%s'", i, this.expectedHash, result)
                }
+       }
 
-               _, err = md5(t)
-               if err == nil {
-                       t.Error("Expected error from md5")
-               }
+       _, err := md5(t)
+       if err == nil {
+               t.Error("Expected error from md5")
        }
 }
 
@@ -2559,11 +2559,11 @@ func TestSHA1(t *testing.T) {
                if result != this.expectedHash {
                        t.Errorf("[%d] sha1: expected '%s', got '%s'", i, this.expectedHash, result)
                }
+       }
 
-               _, err = sha1(t)
-               if err == nil {
-                       t.Error("Expected error from sha1")
-               }
+       _, err := sha1(t)
+       if err == nil {
+               t.Error("Expected error from sha1")
        }
 }
 
@@ -2583,11 +2583,11 @@ func TestSHA256(t *testing.T) {
                if result != this.expectedHash {
                        t.Errorf("[%d] sha256: expected '%s', got '%s'", i, this.expectedHash, result)
                }
+       }
 
-               _, err = sha256(t)
-               if err == nil {
-                       t.Error("Expected error from sha256")
-               }
+       _, err := sha256(t)
+       if err == nil {
+               t.Error("Expected error from sha256")
        }
 }