From 863f76817dc17e08fb08d7ecb5edd5aab9c3b86f Mon Sep 17 00:00:00 2001 From: Jairinho Date: Tue, 1 Mar 2022 18:30:05 -0300 Subject: [PATCH] fix tests --- chip8/chip8_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chip8/chip8_test.go b/chip8/chip8_test.go index 9aa8ac9..9c7921c 100644 --- a/chip8/chip8_test.go +++ b/chip8/chip8_test.go @@ -8,7 +8,7 @@ import ( ) func TestEmulator_Reset(t *testing.T) { - emulator := chip8.NewEmulator(nil) + emulator := chip8.NewEmulator(nil, nil) emulator.V[0x03] = 0xFF emulator.V[0x0F] = 0xBB