Skip to content

Commit

Permalink
Added test.
Browse files Browse the repository at this point in the history
  • Loading branch information
at88mph committed Jul 10, 2023
1 parent c60433d commit a5308ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion tap/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply from: '../properties.gradle'

war {
eachFile {
if (it.name.equals('capabilities.xml') || it.name.equals('service.json')) {
if (it.name == 'capabilities.xml' || it.name == 'service.json') {
filter(ReplaceTokens, tokens: [app_name: 'tap', version: version])
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
LANG=ADQL
QUERY=select pub_title from ivoa.obscore WHERE (gal_latitude < 1.5) AND (gal_latitude > -1.5) AND (gal_longitude < 9) and (gal_longitude > 2) AND science_observation='T' AND data_rights='Public'

0 comments on commit a5308ed

Please sign in to comment.