[foolsday2] Fix test.

This commit is contained in:
Arseny Balobanov 2021-04-01 00:19:42 +03:00
parent f6edf953c4
commit 3758b2c27d

View file

@ -2,10 +2,14 @@
package main package main
import "testing" import (
"fmt"
"os"
"testing"
)
const flag = "FLAG{foolsday2:hidden-gem:07a5e6469f2178616cba4e9a0410e050}" const flag = "FLAG{foolsday2:hidden-gem:07a5e6469f2178616cba4e9a0410e050}"
func TestHiddenGem(t *testing.T) { func TestHiddenGem(t *testing.T) {
t.Logf("Here's your flag: %s", flag) fmt.Fprintf(os.Stderr, "Here's your flag: %s", flag)
} }