Skip to content

Commit

Permalink
Merge pull request #20 from Tubular/albertc1-patch-1
Browse files Browse the repository at this point in the history
FIX minor documentation typo
  • Loading branch information
drudim authored Dec 3, 2016
2 parents c219060 + 45ef1ee commit 6baed91
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ A brief tour on Sparkly features by example:
}
ctx = CustomSparkContext()
ctx = CustomSparklyContext()
# Operate with easily interchangable URL-like data source definitions,
# instead of untidy default interface:
Expand Down Expand Up @@ -49,7 +49,7 @@ A brief tour on Sparkly features by example:
def test_job_works_with_mysql(self):
df = self.hc.read_ext('mysql://<my-testing-host>/<test-db>/<test-table>?user=<test-usre>&password=<test-password>')
res_df = my_shiny_script(df)
self.assertDataframeEqual(
self.assertDataFrameEqual(
res_df,
[('DataA', 'DataB', 'DataC')],
['fieldA', 'fieldB', 'fieldC'],
Expand Down
2 changes: 1 addition & 1 deletion docs/source/test.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ There are two main testing classes in Sparkly:
context = SparklyContext
def test(self):
df = self.hc.read_ext.by_url(...)
self.assertDataframeEqual(
self.assertDataFrameEqual(
df, [('test_data', 1)], ['name', 'number']
)
Expand Down

0 comments on commit 6baed91

Please sign in to comment.