uranusjr commented on code in PR #34791:
URL: https://github.com/apache/airflow/pull/34791#discussion_r1366400314


##########
tests/cli/commands/test_variable_command.py:
##########
@@ -49,6 +51,22 @@ def test_variables_set(self):
         with pytest.raises(KeyError):
             Variable.get("foo1")
 
+    def test_variables_set_with_description(self):
+        """Test variable_set command with optional description argument"""
+        expected_var_desc = "foo_bar_description"
+        var_key = "foo"
+        variable_command.variables_set(
+            self.parser.parse_args(["variables", "set", var_key, "bar", 
"--description", expected_var_desc])
+        )
+
+        assert Variable.get(var_key) is not None

Review Comment:
   ```suggestion
           assert Variable.get(var_key) == "bar"
   ```
   
   I think?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to