Skip to content

Commit

Permalink
Fix integration test breakage due to OAuth 2
Browse files Browse the repository at this point in the history
  • Loading branch information
simonpoole committed Jan 12, 2024
1 parent e9554ce commit ef529f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/androidTest/java/de/blau/android/osm/ApplyOSCTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public void setup() {
@After
public void teardown() {
API api = prefDB.getCurrentAPI();
prefDB.setAPIDescriptors(api.id, api.name, api.url, null, api.notesurl, api.oauth);
prefDB.setAPIDescriptors(api.id, api.name, api.url, null, api.notesurl, api.auth);
prefDB.close();
if (oscFile != null) {
oscFile.delete();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public void setup() {
@After
public void teardown() {
API api = prefDB.getCurrentAPI();
prefDB.setAPIDescriptors(api.id, api.name, api.url, null, api.notesurl, api.oauth);
prefDB.setAPIDescriptors(api.id, api.name, api.url, null, api.notesurl, api.auth);
prefDB.close();
if (msfFile != null) {
msfFile.delete();
Expand Down

0 comments on commit ef529f2

Please sign in to comment.