[foolsday2] Fix test.
This commit is contained in:
parent
f6edf953c4
commit
3758b2c27d
1 changed files with 6 additions and 2 deletions
|
@ -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)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue