mirror of
https://github.com/foss42/apidash.git
synced 2025-05-31 06:08:09 +08:00
Fix RequestModel test
This commit is contained in:
@ -109,11 +109,11 @@ void main() {
|
||||
test('Testing toJson', () {
|
||||
expect(requestModelDup.toJson(), requestModelAsJson);
|
||||
});
|
||||
/*
|
||||
|
||||
test('Testing fromJson', () {
|
||||
expect(RequestModel.fromJson(requestModelDup.toJson()), requestModelDup);
|
||||
final modelFromJson = RequestModel.fromJson(requestModelAsJson);
|
||||
expect(modelFromJson, requestModelDup);
|
||||
});
|
||||
*/
|
||||
|
||||
final requestModeDupString = [
|
||||
"Request Id: 1",
|
||||
|
Reference in New Issue
Block a user