Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5bd2390
Updated delete_project function is utils.py file.
Mar 17, 2016
732a493
Updated css selector on test_delete_sketches.py file.
Mar 17, 2016
d7c0d22
Updated create_sketch function is utils.py file.
Mar 24, 2016
200c686
Updated test_add_projectfile_direct function is test_sketch.py file.
Mar 24, 2016
e6bd116
Updated Firefox version to 45 in firefox_capabilities.yaml file.
Mar 24, 2016
c25b39d
Modified test_walkthrough.py to avoid random failures when testing pa…
Mar 31, 2016
8c4d236
Renamed P-Space-Jarvis attiny85.zip to P-Space-Jarvis-attiny85.zip.
Mar 31, 2016
be9b388
Updated test_compile_local_files function due to homepage changes.
Mar 31, 2016
bea5ae2
Updated functions that test upload functionality.
Mar 31, 2016
f709d18
Corrected assert statement in test_compile_local_files function.
Mar 31, 2016
2e586a1
Updated comments on function update_comment in disqus.py file.
Apr 5, 2016
daa8028
Added missing space in create_log function's arguments.
Apr 7, 2016
a49a574
Disqus comment in the last example of each library not logged in logf…
Apr 7, 2016
9046f0f
Updated dictionary of template strings used to generate the Disqus co…
Apr 7, 2016
ac01613
Updated function that handles Disqus library comments.
Apr 7, 2016
a07320d
Fixed issue: Disqus comment is not created when library has no examples.
Apr 13, 2016
ed135b4
Fixed issue: Disqus comment is not created when library has no examples.
Apr 13, 2016
0cbbc75
Fixed issue: Disqus comment is not created when library has no examples.
Apr 13, 2016
238867a
Fixed Firefox issue when running test_library_fetch.py test.
Apr 14, 2016
c80a28c
Removed redundant else condition from handle_library_comment function.
Apr 14, 2016
67215ee
Added parenthesis after if statements so that the code execution orde…
Apr 14, 2016
0d807d4
Removed unnecessary console.log used for debugging purpose.
Apr 14, 2016
b75a8a6
Added missing space after = .
Apr 14, 2016
42ee6b4
Added missing spaces after == .
Apr 14, 2016
d2583c3
Removed expected_condition from test_add_projectfile_direct function.
Apr 14, 2016
f75cd14
Added multiple functions that change project properties.
Apr 14, 2016
296a7aa
Updated create_project function and related tests.
Apr 14, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Removed redundant else condition from handle_library_comment function.
  • Loading branch information
konstantina committed Apr 14, 2016
commit c80a28c22876552eeb09c5e92d4b1231474ec974
4 changes: 2 additions & 2 deletions codebender_testing/disqus.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ def handle_library_comment(self, library, current_date, log, examples=True):
thread=identifier)
if paginator:
comment_updated = False

new_message = self.messages['library'].replace('TEST_DATE', current_date)
if examples==False:
new_message = self.messages['library_no_examples'].replace('TEST_DATE', current_date)
else:
new_message = self.messages['library'].replace('TEST_DATE', current_date)

for thread in paginator:

Expand Down