Update history_models_test.dart

This commit is contained in:
Ankit Mahato
2025-04-27 05:13:48 +05:30
parent f437b77973
commit 169d97b166

View File

@@ -75,13 +75,5 @@ void main() {
expect(historyRequestModel.httpRequestModel, httpRequestModelGet4);
expect(historyRequestModel.httpResponseModel, responseModel);
});
test("Testing HistoryRequestModel getters", () {
var historyRequestModel = historyRequestModel3;
expect(historyRequestModel.historyId, 'historyId3');
expect(historyRequestModel.metaData, historyMetaModel3);
expect(historyRequestModel.httpRequestModel, httpRequestModelOptions1);
expect(historyRequestModel.httpResponseModel, responseModel);
});
});
}