Skip to content

Commit f051666

Browse files
Merge pull request #136 from SemyonSinchenko/135-bad-png-links
Fix all the links in README
2 parents b950c62 + e0a438b commit f051666

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Diff for: README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def test_remove_non_word_characters_nice_error():
7575

7676
Here's the nicely formatted error message:
7777

78-
![ColumnsNotEqualError](https://github.com/MrPowers/chispa/blob/main/images/columns_not_equal_error.png)
78+
![ColumnsNotEqualError](https://raw.githubusercontent.com/MrPowers/chispa/main/images/columns_not_equal_error.png)
7979

8080
You can see the `matt7` / `matt` row of data is what's causing the error (note it's highlighted in red). The other rows are colored blue because they're equal.
8181

@@ -143,7 +143,7 @@ def test_remove_non_word_characters_long_error():
143143

144144
Here's the nicely formatted error message:
145145

146-
![DataFramesNotEqualError](https://github.com/MrPowers/chispa/blob/main/images/dfs_not_equal_error.png)
146+
![DataFramesNotEqualError](https://raw.githubusercontent.com/MrPowers/chispa/main/images/dfs_not_equal_error.png)
147147

148148
### Ignore row order
149149

@@ -181,7 +181,7 @@ assert_df_equality(df1, df2, ignore_row_order=True)
181181

182182
If you don't specify to `ignore_row_order` then the test will error out with this message:
183183

184-
![ignore_row_order_false](https://github.com/MrPowers/chispa/blob/main/images/ignore_row_order_false.png)
184+
![ignore_row_order_false](https://raw.githubusercontent.com/MrPowers/chispa/main/images/ignore_row_order_false.png)
185185

186186
The rows aren't ordered by default because sorting slows down the function.
187187

@@ -221,7 +221,7 @@ assert_df_equality(df1, df2, ignore_column_order=True)
221221

222222
Here's the error message you'll see if you run `assert_df_equality(df1, df2)`, without ignoring the column order.
223223

224-
![ignore_column_order_false](https://github.com/MrPowers/chispa/blob/main/images/ignore_column_order_false.png)
224+
![ignore_column_order_false](https://raw.githubusercontent.com/MrPowers/chispa/main/images/ignore_column_order_false.png)
225225

226226
### Ignore nullability
227227

@@ -253,7 +253,7 @@ And this `df2`:
253253

254254
You might be surprised to find that in this example, `df1` and `df2` are not equal and will error out with this message:
255255

256-
![nullable_off_error](https://github.com/MrPowers/chispa/blob/main/images/nullable_off_error.png)
256+
![nullable_off_error](https://raw.githubusercontent.com/MrPowers/chispa/main/images/nullable_off_error.png)
257257

258258
Examine the code in this contrived example to better understand the error:
259259

@@ -358,7 +358,7 @@ def test_shows_assert_basic_rows_equality(chispa_formats):
358358
assert_basic_rows_equality(df1.collect(), df2.collect(), formats=chispa_formats)
359359
```
360360

361-
![custom_formats](https://github.com/MrPowers/chispa/blob/main/images/custom_formats.png)
361+
![custom_formats](https://raw.githubusercontent.com/MrPowers/chispa/main/images/custom_formats.png)
362362

363363
## Approximate column equality
364364

@@ -394,7 +394,7 @@ def test_approx_col_equality_different():
394394

395395
This failing test will output a readable error message so the issue is easy to debug.
396396

397-
![ColumnsNotEqualError](https://github.com/MrPowers/chispa/blob/main/images/columns_not_approx_equal.png)
397+
![ColumnsNotEqualError](https://raw.githubusercontent.com/MrPowers/chispa/main/images/columns_not_approx_equal.png)
398398

399399
## Approximate DataFrame equality
400400

@@ -448,7 +448,7 @@ def test_approx_df_equality_different():
448448

449449
Here's the pretty error message that's outputted:
450450

451-
![DataFramesNotEqualError](https://github.com/MrPowers/chispa/blob/main/images/dfs_not_approx_equal.png)
451+
![DataFramesNotEqualError](https://raw.githubusercontent.com/MrPowers/chispa/main/images/dfs_not_approx_equal.png)
452452

453453
## Schema mismatch messages
454454

@@ -479,7 +479,7 @@ def test_schema_mismatch_message():
479479

480480
Here's the error message:
481481

482-
![SchemasNotEqualError](https://github.com/MrPowers/chispa/blob/main/images/schemas_not_approx_equal.png)
482+
![SchemasNotEqualError](https://raw.githubusercontent.com/MrPowers/chispa/main/images/schemas_not_approx_equal.png)
483483

484484
## Supported PySpark / Python versions
485485

0 commit comments

Comments
 (0)