Skip to content

Commit

Permalink
Fix test that was never working properly
Browse files Browse the repository at this point in the history
  • Loading branch information
suricactus committed Apr 23, 2024
1 parent ca4ea0c commit e454ff0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-app/qfieldcloud/core/tests/test_delta.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ def test_non_spatial_geom_empty_str_delta(self):

self.assertEqual(
self.get_file_contents(project, "nonspatial.csv"),
b'fid,col1\n"1",foo\n"2",newfeature\n',
b'fid,col1\n"1",new_value\n',
)

def test_special_data_types(self):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
"new": {
"geometry": "",
"attributes": {
"col1": "foo"
"col1": "new_value"
}
},
"old": {
"geometry": null,
"attributes": {
"col1": "bar"
"col1": "foo"
}
}
}
Expand Down

0 comments on commit e454ff0

Please sign in to comment.