Skip to content

Commit

Permalink
Fix test for output_name
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielPDWalker committed Jan 17, 2024
1 parent 1491251 commit f5d3575
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tap_google_sheets/tests/test_table_name_setting.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@


class TestOutputNameSetting(unittest.TestCase):
"""Test class test_stream_name_setting"""
"""Test class test_output_name_setting"""

def setUp(self):
self.mock_config = test_utils.MOCK_CONFIG
self.mock_config["stream_name"] = "Test Output Name"
self.mock_config["output_name"] = "Test Output Name"

responses.reset()
del test_utils.SINGER_MESSAGES[:]

singer.write_message = test_utils.accumulate_singer_messages

@responses.activate()
def test_discovered_stream_name(self):
def test_output_name(self):
""""""
self.column_response = {"values": [["Column One", "Column Two"], ["1", "1"]]}

Expand Down

0 comments on commit f5d3575

Please sign in to comment.