From e897cd99f93022f35b5c8993b46539c3c0c88392 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 6 Aug 2022 10:11:26 -0400 Subject: [PATCH] Fix transcription of write. --- OSBindings/Mac/Clock SignalTests/AmigaBlitterTests.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OSBindings/Mac/Clock SignalTests/AmigaBlitterTests.mm b/OSBindings/Mac/Clock SignalTests/AmigaBlitterTests.mm index 010c54f3c..9c21e10f4 100644 --- a/OSBindings/Mac/Clock SignalTests/AmigaBlitterTests.mm +++ b/OSBindings/Mac/Clock SignalTests/AmigaBlitterTests.mm @@ -153,7 +153,7 @@ struct Chipset { if([type isEqualToString:@"bread"]) expected_transaction.type = TransactionType::ReadB; if([type isEqualToString:@"cread"]) expected_transaction.type = TransactionType::ReadC; } else if([type isEqualToString:@"write"]) { - expected_transaction.type = TransactionType::WriteFromPipeline; + expected_transaction.type = TransactionType::AddToPipeline; } else { NSLog(@"Unhandled type: %@", type); XCTAssert(false);