-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fix incorrectly updated descriptions (#116)
* add failing tests * fix tests themselves then resolve all failing * fix linting * ignore call order in test
- Loading branch information
1 parent
69e7e5f
commit 42c2fc6
Showing
3 changed files
with
32 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -529,7 +529,10 @@ def test_get_quality(input, expected): | |
["Path to .duckdb file", "Path to .duckdb file"], | ||
["Foo .env file.", "Foo .env file."], | ||
["By (e.g. myFolder/thisTable/) sit, S3. This is replicate.", "By (e.g. myFolder/thisTable/) sit, S3. This is replicate."], | ||
[["foo.Test."], ""], | ||
["Request timeout used when not overridden in Session.execute().", "Request timeout used when not overridden in Session.execute()."], | ||
['For example, "from:[email protected] rfc822msgid:<[email protected]> is:unread"."', 'For example, "from:[email protected] rfc822msgid:<[email protected]> is:unread"."'], | ||
["tap-saasoptics <api_user_email@your_company.com>.", "tap-saasoptics <api_user_email@your_company.com>."], | ||
["https://api.totango.com", "https://api.totango.com"] | ||
] | ||
) | ||
def test_clean_description(input, expected): | ||
|