You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2022/04/20 19:30:00 UTC

[jira] [Work logged] (BEAM-14205) [Playground] Tests for app states

     [ https://issues.apache.org/jira/browse/BEAM-14205?focusedWorklogId=759512&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-759512 ]

ASF GitHub Bot logged work on BEAM-14205:
-----------------------------------------

                Author: ASF GitHub Bot
            Created on: 20/Apr/22 19:29
            Start Date: 20/Apr/22 19:29
    Worklog Time Spent: 10m 
      Work Description: miamihotline commented on code in PR #17225:
URL: https://github.com/apache/beam/pull/17225#discussion_r854484952


##########
playground/frontend/lib/modules/examples/repositories/models/get_list_of_examples_request.dart:
##########
@@ -23,4 +23,14 @@ class GetListOfExamplesRequestWrapper {
   final String? category;
 
   GetListOfExamplesRequestWrapper({required this.sdk, required this.category});
+
+  @override
+  bool operator ==(Object other) =>
+      identical(this, other) ||
+          other is GetListOfExamplesRequestWrapper &&
+              category == other.category &&
+              sdk == other.sdk;
+
+  @override
+  int get hashCode => category.hashCode ^ sdk.hashCode;

Review Comment:
   Thank you, I'll fix this one too.





Issue Time Tracking
-------------------

    Worklog Id:     (was: 759512)
    Time Spent: 50m  (was: 40m)

> [Playground] Tests for app states
> ---------------------------------
>
>                 Key: BEAM-14205
>                 URL: https://issues.apache.org/jira/browse/BEAM-14205
>             Project: Beam
>          Issue Type: Sub-task
>          Components: beam-playground
>            Reporter: Alexander Zhuravlev
>            Assignee: Alexander Zhuravlev
>            Priority: P2
>              Labels: beam-playground-frontend
>          Time Spent: 50m
>  Remaining Estimate: 0h
>




--
This message was sent by Atlassian Jira
(v8.20.7#820007)