Correct a couple of missed "readonly" specifications in the MC6809 unit tests.

Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-04-21 16:51:08 +01:00
parent 0ab5da10ef
commit 4977df7330
2 changed files with 2 additions and 2 deletions

View File

@@ -6,7 +6,7 @@
public class BhiTests public class BhiTests
{ {
private readonly Board board = new Board(); private readonly Board board = new Board();
private MC6809 cpu; private readonly MC6809 cpu;
public BhiTests() public BhiTests()
{ {

View File

@@ -6,7 +6,7 @@
public class BleTests public class BleTests
{ {
private readonly Board board = new Board(); private readonly Board board = new Board();
private MC6809 cpu; private readonly MC6809 cpu;
public BleTests() public BleTests()
{ {